I'm trying to merge a branch which has a different .NET .dll
and .pdb
, and git/BC4 is trying to do a text merge on the files instead of letting me choose local vs remote.
I've never experienced this before, presumably I have changed some setting or BC4 has some difference to BC3.
My relevant .gitconfig
[merge]
tool = bec3
renamelimit = 2000
[mergetool]
prompt = false
keepBackup = false
[mergetool "bec3"]
cmd = \"C:/Program Files (x86)/Beyond Compare 4/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"
trustExitCode = true
I'm using msysgit 1.9.5 and Beyond Compare 4.0.3
Edit: I dont want to binary merge, git used to simply make me choose the local or remote file to resolve the conflict. My question is "is this a git setting (if so, what?) or a BC setting?"