summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-06-08 12:07:20 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-06-08 12:14:01 +0200
commit7ae66517c1b8a93f5a546671c609d2b06b4fb4af (patch)
tree096e3fd2e5e138435241d4c39e6c6196e47af63f
parent7ab6e32843e74176c71fc76219014e3c1f8f41b6 (diff)
Fixed an error in a git command.
-rw-r--r--docs/internals/contributing/committing-code.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals/contributing/committing-code.txt b/docs/internals/contributing/committing-code.txt
index a83697734a..d36bc78fe1 100644
--- a/docs/internals/contributing/committing-code.txt
+++ b/docs/internals/contributing/committing-code.txt
@@ -81,7 +81,7 @@ checkout the branch and work from there::
Yet another alternative is to fetch the branch without adding the
contributor's repository as a remote::
- git fetch https://github.com/<contributor>/django.git
+ git fetch https://github.com/<contributor>/django.git <contributor's pull request branch>
git checkout -b pull_xxxxx FETCH_HEAD
At this point, you can work on the code and continue as above.