Changes between Version 9 and Version 10 of Chimera2/git


Ignore:
Timestamp:
May 6, 2013, 4:37:37 PM (13 years ago)
Author:
Conrad Huang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Chimera2/git

    v9 v10  
    1313The remainder of this document describes some common tasks using '''git'''.  ''plato'' refers to the Linux cluster on which the team repository is stored.  ''franklin'' is the name of a node in the plato cluster.
    1414
    15 == Initializing ''git'' Parameters ==
     15== Initialize ''git'' Parameters ==
    1616
    1717Before using '''git''' repositories, it is a good idea to set the account and e-mail names that will be recorded.  For example, my '''git''' parameters are set with:
     
    2323}}}
    2424
    25 == Cloning a Developer Repository ==
     25== Clone a Developer Repository ==
    2626
    2727To make changes to the source code, a developer must have a working repository.  The repository may be on the same host as the team repository, or it may be on a separate host.
     
    478478}}}
    479479
     480== Delete Unused Branches ==
     481
     482To delete a branch from the local repository, use the command:
     483
     484{{{#!html
     485<pre style="margin-left:20px; margin-right:20px; border:solid 1px; padding:3px; background:white;">
     486<b>git checkout develop && git branch -D feature/<i>feature_name</i></b>
     487</pre>
     488}}}
     489
     490To delete a branch from the remote repository, use the command:
     491
     492{{{#!html
     493<pre style="margin-left:20px; margin-right:20px; border:solid 1px; padding:3px; background:white;">
     494<b>git push origin :feature/<i>feature_name</i></b>
     495</pre>
     496}}}
    480497== Create Team Repository ==
    481498