Skip to content

Instantly share code, notes, and snippets.

@NickJosevski
Created August 15, 2012 00:28
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save NickJosevski/3354203 to your computer and use it in GitHub Desktop.
Save NickJosevski/3354203 to your computer and use it in GitHub Desktop.
Beyond Compare .GitConfig
## .gitconfig
[alias]
dt = difftool
mt = mergetool
[diff]
tool = bc3
[difftool]
prompt = false
[difftool "bc3"]
cmd = \"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\"
[merge]
tool = bc3
[mergetool]
prompt = false
keepBackup = false
[mergetool "bc3"]
cmd = \"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"
trustExitCode = true
@madansr
Copy link

madansr commented Jul 25, 2014

thanks for posting it. I am using beyond compare 4 and getting issues while merging dlls. Beyond compare won't let me pick which dll should be used as the source of truth. Is there something that i am doing wrong?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment