I have Tortoise SVN but I don't like the diff tool. Is there a way to use Meld with tortoise SVN? I know tortoise has an option to set external diff tools, but I am not sure how to use that with meld.
Using Meld as external diff tool with Tortoise SVN
12.3k Views Asked by j.atec At
4
There are 4 best solutions below
0

This worked for me (Meld 1.8.6):
meld %mine %merged %theirs --output %merged --auto-merge
Super fancy: three-way merge with extra tabs for [mine vs base] and [theirs vs base].
meld %mine %base %theirs -o %merged --diff %base %mine --diff %base %theirs --auto-merge
https://lukas.zapletalovi.com/2012/09/three-way-git-merging-with-meld.html
Download meld from http://sourceforge.net/projects/meld-installer/
Unpack the downloaded zip archive into "Program Files" or wherever you want it to be installed. This will create two folders, named "meld" and "python".
Start "meld.exe" from the "meld" folder. If you get a Meld window opened, then you have installed Meld successfully.
In TortoiseSVN, select
Settings
, then go toExternal Programs -> Diff Viewer
on the left panel. InConfigure the program used for comparing different revisions of files
, browse to the Meld executable, "meld.exe", in your "meld" folder. Click on Apply.That's it!