Is there a way to configure git merge in such a way that conflict resolution always goes through an external merge tool?
I'm writing the configuration for semanticmerge and there are cases like this that are incorrectly handled by git but can be correctly solved by semanticmerge: * two developers added the same method on two different locations of the same file.
The problem is that git merge says the conflict is automatic so git mergetool can't be invoked.
Thanks.