Created
June 5, 2018 13:13
-
-
Save pastcompute/ac6f7ff81076d102007ef6997c66c7f6 to your computer and use it in GitHub Desktop.
Use winmerge with git on mingw
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
git config --global diff.tool winmerge | |
git config --global difftool.prompt false | |
git config --global difftool.winmerge.cmd "\"\$PROGRAMFILES (x86)\"/WinMerge/WinMergeU.exe -r -u -e -dl \"Local\" -dr \"Remote\" \"\$LOCAL\" \"\$REMOTE\"" | |
git config --global merge.tool winmerge | |
git config --global mergetool.prompt false | |
git config --global mergetool.winmerge.trustExitCode true | |
git config --global mergetool.winmerge.cmd "\"\$PROGRAMFILES (x86)\"/WinMerge/WinMergeU.exe -r -u -e -dl \"Local\" -dr \"Remote\" \"\$LOCAL\" \"\$REMOTE\" \"\$BASE\" \"\$MERGED\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment