Skip to content

Instantly share code, notes, and snippets.

@panterozo
Last active March 16, 2019 14:23
Show Gist options
  • Save panterozo/76171072c745c0c5d574115c6bfb5319 to your computer and use it in GitHub Desktop.
Save panterozo/76171072c745c0c5d574115c6bfb5319 to your computer and use it in GitHub Desktop.
Meld Configuration
# Add the following to your .gitconfig file.
[diff]
tool = meld
[difftool]
prompt = false
[difftool "meld"]
cmd = meld "$LOCAL" "$REMOTE"
# Add the following to your .gitconfig file.
[merge]
tool = meld
[mergetool "meld"]
cmd = meld "$LOCAL" "$BASE" "$REMOTE" --output "$MERGED"
[mergetool]
keepBackup = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment