The Neath Way of Setting Meld as Default Git Diff Tool
Install Meld if you don’t have it already
sudo apt-get install meld
Configure git to skip the difftool prompt, suggesting diff tools.
Set meld as default diff tool
git config --global difftool.prompt false git config --global diff.tool meld
Run following command to open and see the diff files in meld
git difftool
Comments Off