diff --git AUTHORS AUTHORS
index 8cb71c1..7284711 100644
|
|
answer newbie questions, and generally made Django that much better:
|
354 | 354 | Christian Metts |
355 | 355 | michal@plovarna.cz |
356 | 356 | Slawek Mikula <slawek dot mikula at gmail dot com> |
| 357 | Shawn Milochik <shawn@milochik.com> |
357 | 358 | mitakummaa@gmail.com |
358 | 359 | mmarshall |
359 | 360 | Andreas Mock <andreas.mock@web.de> |
diff --git docs/topics/install.txt docs/topics/install.txt
index 46d6615..731962b 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.) Note that |
| 240 | the Subversion repository is the canonical source for the official |
| 241 | Git and Mercurial repositories and as such will always be the most up-to-date. |
240 | 242 | |
241 | 243 | 2. Check out Django's main development branch (the 'trunk') like so: |
242 | 244 | |
243 | 245 | .. code-block:: bash |
244 | 246 | |
| 247 | # subversion |
245 | 248 | svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk |
246 | 249 | |
| 250 | # git |
| 251 | git clone https://github.com/django/django.git |
| 252 | |
| 253 | # mercurial |
| 254 | hg clone https://bitbucket.org/django/django |
| 255 | |
247 | 256 | 3. Next, make sure that the Python interpreter can load Django's code. The most |
248 | 257 | convenient way to do this is to `modify Python's search path`_. Add a ``.pth`` |
249 | 258 | file containing the full path to the ``django-trunk`` directory to your |
… |
… |
this, Subversion will automatically download any changes.
|
286 | 295 | |
287 | 296 | .. _`download page`: http://www.djangoproject.com/download/ |
288 | 297 | .. _Subversion: http://subversion.tigris.org/ |
| 298 | .. _Git: http://git-scm.com/ |
| 299 | .. _Mercurial: http://mercurial.selenic.com/ |
289 | 300 | .. _`modify Python's search path`: http://docs.python.org/install/index.html#modifying-python-s-search-path |