Changes between Initial Version and Version 1 of CollaborateOnGithub


Ignore:
Timestamp:
Jan 17, 2009, 6:08:56 AM (15 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CollaborateOnGithub

    v1 v1  
     1= Collaboration on !GitHub =
     2
     3This page gives guidelines for distributed collaboration on implementing Django features.
     4
     5== 1. Install git ==
     6
     7On Ubuntu:
     8 1. it makes sense to use the latest git (1.6), there is a personal package archive that provides backports to all Ubuntu releases since Hardy at https://launchpad.net/~smartlounge/+archive
     9 1. add `deb http://ppa.launchpad.net/smartlounge/ubuntu UBUNTU_RELEASE_NAME main` to `/etc/apt/sources.list`
     10 1. install git
     11 {{{
     12$ apt-get install git
     13 }}}
     14
     15== 2. Fork the automatically updated copy of Django trunk on !GitHub ==
     16
Back to Top