Changes between Version 1 and Version 2 of DeveloperGuidelines/Git
- Timestamp:
- 12/20/11 17:46:21 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v1 v2 25 25 {{{ 26 26 cd <mybranch> 27 27 # Update your working directory with latest code from Trunk 28 git checkout master 29 git pull 30 git checkout -b <mystory> 31 git commit -am "My Story" 32 # Quick review of code (no test code left in, etc) 33 git diff master 34 # Merge latest Trunk 35 git checkout master 36 git pull 37 git checkout <mystory> 38 git rebase master 39 # Push to your branch on GitHub 40 git checkout master 41 git merge <mystory> 42 git push 43 # Cleanup 44 git branch -d <mystory> 28 45 }}} 29 46 === Developer Configuration ===