Changes between Version 9 and Version 10 of Chimera2/git
- Timestamp:
- May 6, 2013, 4:37:37 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Chimera2/git
v9 v10 13 13 The 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. 14 14 15 == Initializ ing''git'' Parameters ==15 == Initialize ''git'' Parameters == 16 16 17 17 Before 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: … … 23 23 }}} 24 24 25 == Clon inga Developer Repository ==25 == Clone a Developer Repository == 26 26 27 27 To 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. … … 478 478 }}} 479 479 480 == Delete Unused Branches == 481 482 To 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 490 To 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 }}} 480 497 == Create Team Repository == 481 498
![[Chimera Issue Tracking System]](/trac/chimera/chrome/site/chimera_logo.png)