Given a SHA hash of a merge commit, is there a way to determine what merge strategy (parameter passed to git merge
as -s
or --strategy
) was used when it was created?
I was able to figure it out by retrying the same merge with different resolution strategies until I got the same conflicts, but I figure there must be better way to do it.
I am trying to examine a problem where the change got overwritten by a merge commit, similar to this question.