Created
November 11, 2018 17:57
-
-
Save pamtrak06/f987a284e16f2414d83c7e1b0751380b to your computer and use it in GitHub Desktop.
Configure git to include meld - linux
This file contains hidden or 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
# Set in .git/gitconfig | |
[diff] | |
tool = meld | |
[difftool] | |
prompt = false | |
[difftool "meld"] | |
trustExitCode = true | |
cmd = open -W -a Meld --args \"$LOCAL\" \"$REMOTE\" | |
[merge] | |
tool = meld | |
[mergetool] | |
prompt = false | |
[mergetool "meld"] | |
trustExitCode = true | |
cmd = open -W -a Meld --args --auto-merge \"$LOCAL\" \"$BASE\" \"$REMOTE\" --output=\"$MERGED\" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment