Setup Meld in Linux and set it as default while using “git difftool” command.

				
					# Go to this location
> vim ~/.gitconfig 

# Add this at the bottom
# This sets Meld as the default diff tool
[diff]
    tool = meld
[difftool]
    prompt = false
[difftool "meld"]
    cmd = meld "$LOCAL" "$REMOTE"