Git diff with meld

If you using git on then you should required visual git diff tool.  Its better if you will use external diff tools. Mostly all visual tools are same and my choice is "meld". Very easy to set up , use and integrate with GIT.

How to install meld 
sudo apt-get install meld
Set up meld in git as gitdiff tool
git config --global diff.tool meld
Now you can see diff by using
git difftool
When you will execute above command then meld every time ask to launch your diff file like
Viewing: 'beingtogether.xml'
Launch 'meld' [Y/n]: y
So better if you will use it by following way

git difftool -y


I hope, it will help for you. :)

Comments