Good you found it out with "git cherry". Just to add git cherry would just show you the commid ids (sha). Try this for a more verbose output.
Omit those commits from master which are in staging(even the ones which have been cherry-picked) or are patch-equivalent to a commit in staging git log staging...master --cherry-pick --right-only --no-merges On Wednesday, June 5, 2013 6:09:40 AM UTC+5:30, seonguk.baek wrote: > > Hi guys. > > I want to know the number of cherry-picked commits and commit lists. > > Example > > 1 - 2 - *3* - *4* - 5 [master] > \ > 6 - *7* - *8* - 9 [topic] > > 7, 8 commits are cherry-picked from 3, 4 commits of master. > > How can I know cherry-picked commit lists in topic branch by using git log > or anything? > > Thank you. > -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
