Changes between Version 15 and Version 16 of UsingGit
- Timestamp:
- 12/11/10 20:00:37 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGit
v15 v16 68 68 || svn revert (for pristine index and working copy) || git reset --hard || applies to entire tree so no filename or directory allowed || 69 69 70 To cherry pick a commit from one branch to another:70 To cherry pick a commit from master to fixes/0.24 (this automatically commits to your local branch): 71 71 {{{ 72 git checkout fixes/0.24; git cherrypick {commitref};git push (use git log to find {commitref}) 72 git checkout fixes/0.24; git cherry-pick {commitref} (retrieve commitref hash from git log, e-mail or github history) 73 }}} 74 To see log for specific branch 75 {{{ 76 git log {branchname} 73 77 }}} 74 78 Also, github has a wealth of good information.
