Hi, minor thing I noticed setting up Meld for OS X:
There's a sample .gitconfig on the github page which is handy, but I'm curious why it uses $PWD/$REMOTE instead of just $REMOTE (and similar in the mergetool section). The former doesn't work for me but the latter does.
Here's the full line that works for me under [difftool "meld"]:
cmd = open -W -a Meld --args \"$LOCAL\" \"$REMOTE\"
Hi, minor thing I noticed setting up Meld for OS X:
There's a sample .gitconfig on the github page which is handy, but I'm curious why it uses
$PWD/$REMOTE
instead of just$REMOTE
(and similar in the mergetool section). The former doesn't work for me but the latter does.Here's the full line that works for me under
[difftool "meld"]
:cmd = open -W -a Meld --args \"$LOCAL\" \"$REMOTE\"