Changes between Version 36 and Version 37 of DeveloperGuidelines/Git
- Timestamp:
- 04/12/12 08:04:32 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v36 v37 31 31 git pull upstream master 32 32 git checkout <mystory> 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. 33 # Squash commits to as few as possible to keep revision history clean & make it easier to review the work 34 git rebase -i master 34 35 # Push to your branch on GitHub 35 36 git checkout master