How to set Meld as git mergetool

You could use complete unix paths like: PATH=$PATH:/c/python26 git config –global merge.tool meld git config –global mergetool.meld.path /c/Program files (x86)/meld/bin/meld This is what is described in “How to get meld working with git on Windows“ Or you can adopt the wrapper approach described in “Use Meld with Git on Windows“ # set up Meld as … Read more

View differences of branches with meld?

Short & sweet: git config –global diff.tool meld This configures Git to use meld as the diff tool. (You don’t need to specify the command line arguments, support for meld is built into Git.) Then, if you want a graphical diff instead of a textual one, you simply invoke git difftool instead of git diff … Read more

Git mergetool with Meld on Windows

Why do you not use git bash for Windows? After install meld simply: git config –global merge.tool meld git config –global mergetool.meld.path “C:\Program Files (x86)\Meld\Meld.exe” <- path to meld here Thats all!