summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-06-12 10:19:03 -0400
committerTim Graham <timograham@gmail.com>2014-06-12 10:19:03 -0400
commitbcc3d2b9788cbee5f3fc654c1b0e8324294d8f02 (patch)
tree4d55ad14a8b5456f10d5bef277be0fe7134e85ed
parenta2cd0e12c9410a7b8a30064e3967c617f4de2de5 (diff)
Fixed #22818 -- Clarified you need to cd into the Django clone.
Thanks Josh Parris.
-rw-r--r--docs/internals/contributing/writing-code/working-with-git.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/internals/contributing/writing-code/working-with-git.txt b/docs/internals/contributing/writing-code/working-with-git.txt
index 65613efcdb..9d48835cf1 100644
--- a/docs/internals/contributing/writing-code/working-with-git.txt
+++ b/docs/internals/contributing/writing-code/working-with-git.txt
@@ -46,7 +46,10 @@ forked Django's repository, create a local copy of your fork::
git clone git@github.com:github_nick/django.git
This will create a new directory "django", containing a clone of your GitHub
-repository.
+repository. The rest of the git commands on this page need to be run within the
+cloned directory so switch to it now::
+
+ cd django
Your GitHub repository will be called "origin" in Git.