Changes between Version 12 and Version 13 of DjangoBranches


Ignore:
Timestamp:
Jun 19, 2008, 12:07:50 PM (16 years ago)
Author:
korpios
Comment:

Organize links to distributed version control mirrors; add Jacob's git repo

Legend:

Unmodified
Added
Removed
Modified
  • DjangoBranches

    v12 v13  
    2525We are discouraging the creation of new branches inside Django's subversion repository.  If you'd like to work on a major new contribution to Django, we encourage you to set up a new "branch" elsewhere and let the Django-developers mailing list know about it.  One tactic is to use a distributed revision control system ("DRCS", or sometimes "DSCM", ''see'' [http://en.wikipedia.org/wiki/Revision_control Wikipedia's article on revision control]); these systems allow you to create your own repository anywhere you'd like, and typically include tools to import from Subversion.  Options here include [http://bazaar-vcs.org/ Bazaar], [http://git.or.cz/ Git], [http://www.selenic.com/mercurial/ Mercurial], and [http://svk.bestpractical.com/ SVK].
    2626
    27 Mercurial repositories mirroring Django:
     27Please note that the information regarding branches in the [http://www.djangoproject.com/documentation/contributing/#branch-policy Contributing] document is out of date with regards to Django's branch creation policy.
    2828
    29  * [Preferred] Full Mercurial mirror hosted at dpaste.com, updated hourly: http://hg.dpaste.com/django/
    30  * SVN2HG Gateway of Django and Active branches, updated hourly: [http://hgsvn.trbs.net/django/]
    31  * ~~ Tom Tobin Mercurial Mirror: [http://hg.korpios.com/] ~~
     29== Distributed version control mirrors ==
     30
     31=== Bazaar ===
     32
     33[https://launchpad.net/ Launchpad] mirrors Django's trunk: https://launchpad.net/django
     34
     35You can fetch it with:
     36{{{
     37bzr branch lp:django
     38}}}
     39
     40=== Git ===
    3241
    3342Matthias Kestenholz has set up several git repositories for Django and for a selection of Django applications:
     
    3645 * The django changes are sporadically published on repo.or.cz: http://repo.or.cz/w/django.git/
    3746
    38 Please note that the information regarding branches in the [http://www.djangoproject.com/documentation/contributing/#branch-policy Contributing] document is out of date with regards to Django's branch creation policy.
     47Jacob Kaplan-Moss has also set up an experimental git mirror ([http://groups.google.com/group/django-developers/browse_thread/thread/7c96cbb1a13aa368 django-developers post]):
     48
     49 * Repository: git://djangoproject.com/django
     50 * Gitweb: http://code.djangoproject.com/git/?p=django
     51
     52=== Mercurial (hg) ===
     53
     54 * [Preferred] Full Mercurial mirror hosted at dpaste.com, updated hourly: http://hg.dpaste.com/django/
     55 * SVN2HG Gateway of Django and Active branches, updated hourly: [http://hgsvn.trbs.net/django/]
Back to Top