Ticket #16209: 19209_alt_repos.diff

File 19209_alt_repos.diff, 2.0 KB (added by ShawnMilo, 13 years ago)

Patch to mention git & hg as alternatives to svn when "tracking trunk."

  • AUTHORS

    diff --git AUTHORS AUTHORS
    index b8c773b..4b64f4b 100644
    answer newbie questions, and generally made Django that much better:  
    351351    Christian Metts
    352352    michal@plovarna.cz
    353353    Slawek Mikula <slawek dot mikula at gmail dot com>
     354    Shawn Milochik <shawn@milochik.com>
    354355    mitakummaa@gmail.com
    355356    mmarshall
    356357    Andreas Mock <andreas.mock@web.de>
  • docs/topics/install.txt

    diff --git docs/topics/install.txt docs/topics/install.txt
    index 46d6615..0372a51 100644
    Installing the development version  
    234234If you'd like to be able to update your Django code occasionally with the
    235235latest bug fixes and improvements, follow these instructions:
    236236
    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.)
     2371. 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.)
    240240
    2412412. Check out Django's main development branch (the 'trunk') like so:
    242242
    243243   .. code-block:: bash
    244244
     245       #subversion
    245246       svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk
    246247
     248       #git
     249       git clone https://github.com/django/django.git
     250
     251       #mercurial
     252       hg clone https://bitbucket.org/django/django
     253
    2472543. Next, make sure that the Python interpreter can load Django's code. The most
    248255   convenient way to do this is to `modify Python's search path`_. Add a ``.pth``
    249256   file containing the full path to the ``django-trunk`` directory to your
    this, Subversion will automatically download any changes.  
    286293
    287294.. _`download page`: http://www.djangoproject.com/download/
    288295.. _Subversion: http://subversion.tigris.org/
     296.. _Git: http://git-scm.com/
     297.. _Mercurial: http://mercurial.selenic.com/
    289298.. _`modify Python's search path`: http://docs.python.org/install/index.html#modifying-python-s-search-path
Back to Top