Last active
October 12, 2017 08:59
-
-
Save 4F2E4A2E/fa8a6b58a778497cbfdf9d124e483f87 to your computer and use it in GitHub Desktop.
Meldmerge git configuration: http://meldmerge.org
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Edit: | |
vim ~/.gitconfig | |
--- | |
[diff] | |
tool = meld | |
[difftool] | |
prompt = false | |
[difftool "meld"] | |
cmd = meld "$LOCAL" "$REMOTE" | |
[alias] | |
meld = !git difftool --dir-diff | |
[user] | |
email = [email protected] | |
name = username | |
--- | |
Usage: | |
git meld |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment