Changes between Version 36 and Version 37 of DeveloperGuidelines/Git


Ignore:
Timestamp:
04/12/12 08:04:32 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Git

    v36 v37  
    3131git pull upstream master
    3232git 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
     34git rebase -i master
    3435# Push to your branch on GitHub
    3536git checkout master