diff --git a/AUTHORS b/AUTHORS
a
|
b
|
|
355 | 355 | Christian Metts |
356 | 356 | michal@plovarna.cz |
357 | 357 | Slawek Mikula <slawek dot mikula at gmail dot com> |
| 358 | Shawn Milochik <shawn@milochik.com> |
358 | 359 | mitakummaa@gmail.com |
359 | 360 | mmarshall |
360 | 361 | Andreas Mock <andreas.mock@web.de> |
diff --git a/docs/topics/install.txt b/docs/topics/install.txt
a
|
b
|
|
236 | 236 | If you'd like to be able to update your Django code occasionally with the |
237 | 237 | latest bug fixes and improvements, follow these instructions: |
238 | 238 | |
239 | | 1. Make sure that you have Subversion_ installed, and that you can run its |
240 | | commands from a shell. (Enter ``svn help`` at a shell prompt to test |
241 | | this.) |
| 239 | 1. Make sure that you have Subversion_, Git_, or Mercurial_ installed, and |
| 240 | that you can run its commands from a shell. (Enter ``svn help``, |
| 241 | ``git help``, or ``hg help`` at a shell prompt to test this.) Note that |
| 242 | the Subversion repository is the canonical source for the official |
| 243 | Git and Mercurial repositories and as such will always be the most up-to-date. |
242 | 244 | |
243 | 245 | 2. Check out Django's main development branch (the 'trunk') like so: |
244 | 246 | |
245 | 247 | .. code-block:: bash |
246 | 248 | |
| 249 | # subversion |
247 | 250 | svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk |
248 | 251 | |
| 252 | Official mirrors of the subversion repository can be obtained like so: |
| 253 | |
| 254 | .. code-block:: bash |
| 255 | |
| 256 | # git |
| 257 | git clone https://github.com/django/django.git |
| 258 | |
| 259 | # mercurial |
| 260 | hg clone https://bitbucket.org/django/django |
| 261 | |
| 262 | .. admonition :: Caution |
| 263 | |
| 264 | These mirrors should be updated every 5 minutes but aren't guaranteed |
| 265 | to be up-to-date since they are hosted on external services. |
| 266 | |
249 | 267 | 3. Next, make sure that the Python interpreter can load Django's code. The most |
250 | 268 | convenient way to do this is to `modify Python's search path`_. Add a ``.pth`` |
251 | 269 | file containing the full path to the ``django-trunk`` directory to your |
… |
… |
|
288 | 306 | |
289 | 307 | .. _`download page`: http://www.djangoproject.com/download/ |
290 | 308 | .. _Subversion: http://subversion.tigris.org/ |
| 309 | .. _Git: http://git-scm.com/ |
| 310 | .. _Mercurial: http://mercurial.selenic.com/ |
291 | 311 | .. _`modify Python's search path`: http://docs.python.org/install/index.html#modifying-python-s-search-path |