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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -