Changes between Version 34 and Version 35 of DeveloperGuidelines/Git
- Timestamp:
- 03/16/12 01:00:34 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v34 v35 29 29 git checkout master 30 30 git pull # to get any merges, pulls or edits which you may have done on your GitHub branch 31 git pull upstream master 31 32 git checkout <mystory> 32 33 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.