-
Download the latest
.dmgpackage for Mac from here: Meld for OSX -
Set meld as your git difftool/mergetool by editing your
~/.gitconfigand adding the following lines, as mentioned in the above link:[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\" -
Use the
git difftoolcommand in your repo to compare and edit files between revisions.