diff --git AUTHORS AUTHORS
index b8c773b..4b64f4b 100644
|
|
answer newbie questions, and generally made Django that much better:
|
351 | 351 | Christian Metts |
352 | 352 | michal@plovarna.cz |
353 | 353 | Slawek Mikula <slawek dot mikula at gmail dot com> |
| 354 | Shawn Milochik <shawn@milochik.com> |
354 | 355 | mitakummaa@gmail.com |
355 | 356 | mmarshall |
356 | 357 | Andreas Mock <andreas.mock@web.de> |
diff --git docs/topics/install.txt docs/topics/install.txt
index 46d6615..0372a51 100644
|
|
Installing the development version
|
234 | 234 | If you'd like to be able to update your Django code occasionally with the |
235 | 235 | latest bug fixes and improvements, follow these instructions: |
236 | 236 | |
237 | | 1. Make sure that you have Subversion_ installed, and that you can run its |
238 | | commands from a shell. (Enter ``svn help`` at a shell prompt to test |
239 | | this.) |
| 237 | 1. Make sure that you have Subversion_, Git_, or Mercurial_ installed, and |
| 238 | that you can run its commands from a shell. (Enter ``svn help``, |
| 239 | ``git help``, or ``hg help`` at a shell prompt to test this.) |
240 | 240 | |
241 | 241 | 2. Check out Django's main development branch (the 'trunk') like so: |
242 | 242 | |
243 | 243 | .. code-block:: bash |
244 | 244 | |
| 245 | #subversion |
245 | 246 | svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk |
246 | 247 | |
| 248 | #git |
| 249 | git clone https://github.com/django/django.git |
| 250 | |
| 251 | #mercurial |
| 252 | hg clone https://bitbucket.org/django/django |
| 253 | |
247 | 254 | 3. Next, make sure that the Python interpreter can load Django's code. The most |
248 | 255 | convenient way to do this is to `modify Python's search path`_. Add a ``.pth`` |
249 | 256 | file containing the full path to the ``django-trunk`` directory to your |
… |
… |
this, Subversion will automatically download any changes.
|
286 | 293 | |
287 | 294 | .. _`download page`: http://www.djangoproject.com/download/ |
288 | 295 | .. _Subversion: http://subversion.tigris.org/ |
| 296 | .. _Git: http://git-scm.com/ |
| 297 | .. _Mercurial: http://mercurial.selenic.com/ |
289 | 298 | .. _`modify Python's search path`: http://docs.python.org/install/index.html#modifying-python-s-search-path |