Config.Tips

Using External Diff and Merge Tools

Integrate external diff and merge tools like Beyond Compare or KDiff3 by configuring them in your gitconfig.

~/.gitconfig
[diff]
  tool = bc3
[difftool "bc3"]
    cmd = "bcomp \"$LOCAL\" \"$REMOTE\""

Share this tip