Changes between Version 1 and Version 2 of Bcfg2GitHowto


Ignore:
Timestamp:
11/10/10 05:00:22 (13 years ago)
Author:
http://fab.id.fedoraproject.org/
Comment:

github added

Legend:

Unmodified
Added
Removed
Modified
  • Bcfg2GitHowto

    v1 v2  
    8181Please send your patches to the [wiki:MailingList Bcfg mailing list] or open a ticket in the [http://trac.mcs.anl.gov/projects/bcfg2/newticket ticketing system]. 
    8282 
     83== Fork / Pull request == 
     84 
     85[https://github.com/ github] provides tool for collaboration including a way to easy fork existing repositories. Got to the [https://github.com/solj/bcfg2 Bcfg2 github mirror] and fork this repository. For more detail please refer to [http://help.github.com/forking/ Forking a project]. Clone the fork: 
     86 
     87{{{ 
     88$ git clone [email protected]:your_github_username/bcfg2.git 
     89}}} 
     90 
     91At the moment there is no connection to the upstream repository. You need to add another remote named "upstream" which points to the upstream repository. 
     92 
     93{{{ 
     94$ cd bcfg2 
     95$ git remote add upstream git://github.com/solj/bcfg2.git 
     96$ git fetch upstream 
     97}}} 
     98 
     99Make changes, add new features, write a plugin, or fix typos. Then commit all changes. 
     100 
     101{{{ 
     102$ git add new_file 
     103$ git commit new_file -m "This is a new file" 
     104$ git push origin master 
     105}}} 
     106 
     107If you are done, send a [http://help.github.com/pull-requests/ pull request]. 
     108 
     109Don't forget to pulling in changes in the upstream repository from time to time as described in the [http://help.github.com/forking/ Forking a project] document. 
     110 
    83111== Commit == 
    84112Please visit the [wiki:GitAccess Git access] page or mail the [wiki:MailingList Bcfg mailing list] for details about the application for direct git repository access.