Changes between Version 28 and Version 29 of UsingGit
- Timestamp:
- 10/18/12 17:35:17 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGit
v28 v29 22 22 23 23 {{{ 24 git checkout fixes/0.2 524 git checkout fixes/0.26 25 25 }}} 26 26 … … 85 85 || svn revert -R (for pristine index and working copy) || git reset --hard || applies to entire tree so no filename or directory allowed || 86 86 87 To cherry pick a commit from master to fixes/0.2 5(this automatically commits to your local branch):87 To cherry pick a commit from master to fixes/0.26 (this automatically commits to your local branch): 88 88 {{{ 89 git checkout fixes/0.2 5; git cherry-pick -x {commitref} (retrieve commitref hash from git log, e-mail or github history)89 git checkout fixes/0.26; git cherry-pick -x {commitref} (retrieve commitref hash from git log, e-mail or github history) 90 90 }}} 91 91 To see log for specific branch
