diff options
| author | Tim Graham <timograham@gmail.com> | 2016-10-26 19:15:33 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-10-27 08:18:56 -0400 |
| commit | d84ffcc22b2a0dbc0a44a67d56da7e3647e2f87a (patch) | |
| tree | 0d64dac1aedd20d67713ca882b2b5870956f2d08 /docs/intro/contributing.txt | |
| parent | c74378bb77db5bbeac1bd48c0cd31154f96a81d6 (diff) | |
Updated "running the tests" to use 'pip install -e'.
Diffstat (limited to 'docs/intro/contributing.txt')
| -rw-r--r-- | docs/intro/contributing.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/intro/contributing.txt b/docs/intro/contributing.txt index 0cc0394836..ce93f48974 100644 --- a/docs/intro/contributing.txt +++ b/docs/intro/contributing.txt @@ -111,14 +111,15 @@ Getting a copy of Django's development version ============================================== The first step to contributing to Django is to get a copy of the source code. -From the command line, use the ``cd`` command to navigate to the directory -where you'll want your local copy of Django to live. +First, `fork Django on GitHub <https://github.com/django/django#fork-destination-box>`__. +Then, from the command line, use the ``cd`` command to navigate to the +directory where you'll want your local copy of Django to live. Download the Django source code repository using the following command: .. code-block:: console - $ git clone https://github.com/django/django.git + $ git clone git@github.com:YourGitHubName/django.git Now that you have a local copy of Django, you can install it just like you would install any package using ``pip``. The most convenient way to do so is by using |
