Changes between Version 31 and Version 32 of DeveloperGuidelines/Git


Ignore:
Timestamp:
02/06/12 23:23:23 (13 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Git

    v31 v32  
    2828# Merge latest Trunk
    2929git checkout master
    30 git pull
     30git pull # to get any merges, pulls or edits which you may have done on your GitHub branch
    3131git checkout <mystory>
    3232git 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.