tags:

views:

123

answers:

1

I see a commit in foo branch's log. I'd like to determine if that commit has been cherry-picked onto branch bar.

If I were in a pure git environment I think the hashes would be the same, but the branch in question was pulled in using git-svn.

+3  A: 

Try "git cherry" or "git patch-id".

Jakub Narębski