Is there a “theirs” version of “git merge -s ours”?
A similar alternative is the –strategy-option (short form -X) option, which accepts theirs. For example: git checkout branchA git merge -X theirs branchB However, this is more equivalent to -X ours than -s ours. The key difference being that -X performs a regular recursive merge, resolving any conflicts using the chosen side, whereas -s ours … Read more