summaryrefslogtreecommitdiff
path: root/_posts/2009-06-11-forking.markdown
diff options
context:
space:
mode:
authorCameron McEfee <cameron@github.com>2011-02-28 14:33:10 -0800
committerCameron McEfee <cameron@github.com>2011-02-28 14:33:10 -0800
commita01d0402e14f4c760513a97b01a130b8d05550bd (patch)
tree7d345b6914897f7e0b1a35ccbfafb8e796be0304 /_posts/2009-06-11-forking.markdown
parent8661410cf2dd7a40364fc0f5291fd25c1b877c16 (diff)
parent0f9052f1ad1ef76e7d682e7061f135277c3bf958 (diff)
Merge branch 'gh-pages' of https://github.com/github/help.github.com into gh-pages
Diffstat (limited to '_posts/2009-06-11-forking.markdown')
-rwxr-xr-x_posts/2009-06-11-forking.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/_posts/2009-06-11-forking.markdown b/_posts/2009-06-11-forking.markdown
index dc99a4a..5c472df 100755
--- a/_posts/2009-06-11-forking.markdown
+++ b/_posts/2009-06-11-forking.markdown
@@ -9,7 +9,7 @@ main_category: collaborating
This guide will step you through the process of forking, pushing your changes,
and pulling in changes from the upstream repo.
-We'll use [github-services](http://github.com/pjhyett/github-services) as an
+We'll use [github-services](http://github.com/github/github-services) as an
example to fork, submit a change, and re-sync with the forked repo.
All of the examples on this page assume you're working in the `master` branch.
@@ -35,7 +35,7 @@ not__ point to the original repo you forked from. To help you keep track of
that repo we will add another remote named "upstream":
<pre class="terminal">$ cd github-services
-$ git remote add upstream git://github.com/pjhyett/github-services.git
+$ git remote add upstream git://github.com/github/github-services.git
$ git fetch upstream
</pre>