How to list commits that were cherry-picked in Git? Let's suppose the following scenario: cp = cherry-pick commit
cp1 cp2
master -----o------o------o-----o----o
\ / /
branch1 \----o------o-----o---o---o
Is there a log command to list cherry-pick commits cp1 and cp2 ?
Thanks.
will show cherry-pick events.