Changes between Version 15 and Version 16 of UsingGit


Ignore:
Timestamp:
12/11/10 20:00:37 (15 years ago)
Author:
tralph
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGit

    v15 v16  
    6868|| svn revert (for pristine index and working copy) || git reset --hard || applies to entire tree so no filename or directory allowed ||
    6969
    70 To cherry pick a commit from one branch to another:
     70To cherry pick a commit from master to fixes/0.24 (this automatically commits to your local branch):
    7171{{{
    72 git checkout fixes/0.24; git cherrypick {commitref};git push (use git log to find {commitref})
     72git checkout fixes/0.24; git cherry-pick {commitref} (retrieve commitref hash from git log, e-mail or github history)
     73}}}
     74To see log for specific branch
     75{{{
     76git log {branchname}
    7377}}}
    7478Also, github has a wealth of good information.