meld icon indicating copy to clipboard operation
meld copied to clipboard

OSX Big Sur, difftool and mergetool working configuration

Open MrLaki5 opened this issue 4 years ago • 0 comments

I have tried installing Meld on Sur with release 3.21.0. This is what I had to add to .gitconfig file in order for mergetool and difftool to start working:

[diff] tool = meld [difftool] prompt = false [difftool "meld"] trustExitCode = true cmd = open -W -a Meld --args "$LOCAL" "$PWD/$REMOTE" [merge] tool = meld [mergetool] prompt = false [mergetool "meld"] trustExitCode = true cmd = open -W -a Meld --args --auto-merge "$PWD/$LOCAL" "$PWD/$BASE" "$PWD/$REMOTE" --output="$PWD/$MERGED"

MrLaki5 avatar May 18 '21 10:05 MrLaki5