| 1 | = Collaboration on !GitHub = |
| 2 | |
| 3 | This page gives guidelines for distributed collaboration on implementing Django features. |
| 4 | |
| 5 | == 1. Install git == |
| 6 | |
| 7 | On 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 | |