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
(they both take the same arguments). In your case:
git difftool master..devel