Skip to content

Instantly share code, notes, and snippets.

@esromneb
Forked from roolo/.gitconfig
Created June 14, 2012 23:13
Show Gist options
  • Save esromneb/2933591 to your computer and use it in GitHub Desktop.
Save esromneb/2933591 to your computer and use it in GitHub Desktop.
git-merge with KDiff3 on Mac OS X Lion
# This is file ~/.gitconfig
[merge]
tool = extMerge
[mergetool "extMerge"]
cmd = ~/bin/extMerge.sh \"$BASE\" \"$LOCAL\" \"$REMOTE\" -o \"$MERGED\"
#!/bin/sh
# This is file ~/bin/extMerge.sh
/Applications/kdiff3.app/Contents/MacOS/kdiff3 $*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment