summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorPetros Amiridis <petros@amiridis.net>2011-02-26 15:14:06 +0200
committerPetros Amiridis <petros@amiridis.net>2011-02-26 15:14:06 +0200
commitf5b7bec7c5b3e800d60637ae022439a69a37a2e1 (patch)
tree41f3b63be3f5a55cc9a41657a2ff569a5aa251d8 /_posts
parentdfd80d30d37e28a38020a0fd4bb9553e9de9a927 (diff)
removed old pjhyett reference in forking example repo URL (replaced with github)
Diffstat (limited to '_posts')
-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>