Changes between Initial Version and Version 1 of faq/git


Ignore:
Timestamp:
Jan 20, 2010, 1:04:30 AM (16 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/git

    v1 v1  
     1= Does May First/People Link have a shared git installation I can use?]
     2
     3Yes. 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
     5Once 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{{{
     9mkdir myproject
     10cd myproject
     11git init
     12}}}
     13 * Next, add a file or two
     14{{{
     15touch README
     16git add README
     17git commit README
     18}}}