Hi I am unable to launch the external merge tool "Meld" from the source tree software.
Here is what have in the .gitconfig :
[mergetool "sourcetree"]
cmd = 'C:/Program Files (x86)/Meld/Meld.exe' \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"
trustExitCode = true
For merge command try the following arguments.
"$LOCAL" "$BASE" "$REMOTE" --auto-merge --output="$MERGED"
I'm kind of having the same problem. External merge tool is disabled.
https://crazy4groovy.tinytake.com/sf/NDA0Njc2XzIyMzkyOTI
[mergetool "sourcetree"]
cmd = 'C:/Program Files/Perforce/p4merge.exe' \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"
trustExitCode = true
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is a completely different issue. Based on your screenshot, "Launch external merge tool" is disabled because git thinks the file in question doesn't have conflicts. However, the diff view clearly shows conflict markers in the file. Choose "mark unresolved" from that menu first, then you should be able to launch your merge tool.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This might happen if you have selected to ignore white space. Try not ignoring white space and see what happens.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Seth.
I was actually able to make it work using the following :
[mergetool "Meld"]
cmd = 'C:/Program Files (x86)/Meld/Meld.exe' \"$LOCAL\" \"$REMOTE\" \"$MERGED\"
trustExitCode = true
Looks like adding one more parameter makes the Meld program not show up.
This is in a windows 7 environment .
Regards,
Sanatan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
http://stackoverflow.com/questions/11133290/git-merging-using-meld
You might try without the double quotes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.