Last active
September 27, 2022 08:29
-
-
Save renaco/89cdffdbc365530a14a4619ce17791ad to your computer and use it in GitHub Desktop.
.gitconfig (Meld configuration on windows)
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
[merge] | |
tool = meld | |
[mergetool "meld"] | |
cmd = \"C:\\Program Files (x86)\\Meld\\Meld.exe\" "$LOCAL" "$BASE" "$REMOTE" "--output=$MERGED" | |
path = C:/Program Files (x86)/Meld/Meld.exe | |
trustExitCode = false | |
keepBackup = false | |
[diff] | |
tool = meld | |
[difftool "meld"] | |
cmd = \"C:\\Program Files (x86)\\Meld\\Meld.exe\" "$LOCAL" "$REMOTE" | |
path = C:/Program Files (x86)/Meld/Meld.exe | |
[mergetool] | |
keepBackup = false |
Thanks man :)
Thx for sharing
Thanks
Probably it won't work on Windows 10 with Meld-3.22.0-mingw since it has another install path:
where Meld
C:\Program Files\Meld\Meld.exe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks working