git log - more verbose git cherry -
i'm looking git cherry behave more git log
.
i have 2 independent branches in git repository (result of svn import). no common ancestor, no merges between them. don't want these 2 branches ever connected, though concern same project.
the 2 branches are:
master
(clean line, releasable code)
old_trunk
(junk development branch, experimental commits ones want cherry pick)
now,
$ git cherry old_trunk -v
properly identifies changesets applied master (as svn merge working more cherry pick).
however git log:
$ git log --cherry --cherry-mark master..old_trunk
shows commits not yet applied master. it's either broken or using different mechanism find cherry picks.
i'm looking solution navigate through old_trunk
history see author, see date of commit, see full commit message, , importantly able distinguish cherry-picks done.
any thoughts?
well, can list commits git cherry
, run them through loop show each 1 returned. work you?
for in $(git cherry old_trunk | cut -d" " -f 2); git show $i --quiet --pretty=fuller; done
Comments
Post a Comment