Hi Phillip, On 12. Jan 2024, at 12:01, phillip.wood123@xxxxxxxxx wrote: > I should start by saying that I didn't know "git log --merge" existed before > I saw this message I also just found it and it looked very useful... > so please correct me if I've misunderstood what this patch is doing. If I > understand correctly it shows the commits from each side of the merge and is > equivalent to > > git log HEAD MERGE_HEAD ^$(git merge-base HEAD MERGE_HEAD) > > When a commit is cherry-picked the merge base used is CHERRY_PICK_HEAD^ [*] > so I'm not sure what > > git log HEAD CHERRY_PICK_HEAD ^$(git merge-base HEAD CHERRY_PICK_HEAD) Almost, but not quite: "git log —merge" only shows the commits touching the conflict, so it would be equivalent to (I think): git log HEAD CHERRY_PICK_HEAD ^$(git merge-base HEAD CHERRY_PICK_HEAD) -- $(git diff --name-only --diff-filter=U --relative) (or replace CHERRY_PICK with one of the other actions) > Indeed there HEAD and CHERRY_PICK_HEAD may not share a common ancestor. True - but same for MERGE_HEAD ("git merge --allow-unrelated-histories"). I have to confess I did not check how it would behave under those circumstances. It could either error, or (more helpful) show the log touching the file until the root commit. Best wishes Michael