when using git cherry-pick,occur a conflict.
the conflict cause by the target branch is short of the work branch.
lack of some commit ,I can't cherry-pick my new commit to the target branch .
the question is how can i find which conflict commit , When i cherry-pick my new commit to target branch which is lack of some commit, and list the confilct commit ID ?
I m sorry for my pool English.
Branch A, whith commit 1,2,3,4,5,6
Branch B, with commit 1,3
commit 6 is a associate with commit 4. when I cherry-pick commit 6 to branch B, the conflict occur.
Is there have any easy way to figure out which commit is associate commit 6. so that i can cherry-pick this commit (like commit 4),and than cherry-pick commit 6, instead of commit 4 & 5 both.
Thank you for all.