Changes between Version 13 and Version 14 of git-svn-tutorial

Show
Ignore:
Timestamp:
08/08/09 12:22:33 (12 years ago)
Author:
bacek
Comment:

Fix git command line args

Legend:

Unmodified
Added
Removed
Modified
  • git-svn-tutorial

    v13 v14  
    114114{{{ 
    115115    git svn branch -m "Branch for work on extra cool feature" extra_cool_feature 
    116     git checkout extra_cool_feature_local remotes/extra_cool_feature # to avoid warning from git about ambiguity 
     116    git checkout --track -b extra_cool_feature_local remotes/extra_cool_feature # to avoid warning from git about ambiguity 
     117    git reset --hard remotes/extra_cool_feature 
    117118    ... hack/git commit/git commit --amend/git rebase -i HEAD~10/... as usual 
    118119}}}