| 1 | = Does May First/People Link have a shared git installation I can use?] |
| 2 | |
| 3 | Yes. If you would like access to it, please start by [/newticket opening a ticket]. Include your [wiki:public_private_key_generation public ssh key] in the ticket and the name of the project you would like to setup. |
| 4 | |
| 5 | Once we've completed the setup, you can use your repository by taking the following steps: |
| 6 | |
| 7 | * Create a bare repository on your development machine: |
| 8 | {{{ |
| 9 | mkdir myproject |
| 10 | cd myproject |
| 11 | git init |
| 12 | }}} |
| 13 | * Next, add a file or two |
| 14 | {{{ |
| 15 | touch README |
| 16 | git add README |
| 17 | git commit README |
| 18 | }}} |