Changes between Version 31 and Version 32 of DeveloperGuidelines/Git
- Timestamp:
- 02/06/12 23:23:23 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v31 v32 28 28 # Merge latest Trunk 29 29 git checkout master 30 git pull 30 git pull # to get any merges, pulls or edits which you may have done on your GitHub branch 31 31 git checkout <mystory> 32 32 git rebase master #The rebase command will apply your commits ON TOP of the latest revisions from trunk, so that they are committed in the right order.