July 14th, 2023
Meld difftool setup in Linux

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"

				
			

Leave a Reply

Your email address will not be published. Required fields are marked *