Changes between Version 29 and Version 30 of DeveloperGuidelines/Git
- Timestamp:
- 02/02/12 01:59:14 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v29 v30 30 30 git pull 31 31 git checkout <mystory> 32 git rebase master 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. 33 33 # Push to your branch on GitHub 34 34 git checkout master … … 40 40 41 41 === Resolving Merge Conflicts === 42 If you encounter conflicts during the rebase, the conflicts will be tagged in the files with: 43 {{{ 44 <<<<<<< HEAD 45 # Commits from Trunk 46 ======= 47 # Commits from <mystory> 48 >>>>>>> "My Story" 49 }}} 50 You can correct these conflict in your code text editor, then continue the rebase: 51 {{{ 52 git rebase --continue 53 }}} 54 42 55 You can create the .THIS & .OTHER files using: 43 56 {{{