TortoiseHg with TortoiseSvn Diff

I recently switched from SVN to Hg. I used to use TortoiseSVN, and now I use TortoiseHg. However, one thing I really miss is the differences in TortoiseSVN style; Hg is easy to read and understand.

Is there a way to tell TortoiseHg to use the TortoiseSVN diff tool?

+5
source share
3 answers

Right click -> TortoiseHg -> Global Settings -> TortoiseHg -> Visual Scatter Tool -> Select TortoiseMerge

+4
source

I don't know why TortoiseHg does not come with this built-in, because TortoiseSVN and TortoiseGIT do.

- TortoiseIDiff.exe , TortoiseHg - Mercurial.ini, Windows ( ) > TortoiseHg > > :

[extdiff]
cmd.tortoisediff = C:\Program Files\TortoiseHg\TortoiseIDiff.exe
opts.tortoisediff = /left:"$parent" /lefttitle:"$plabel1" /right:"$child" /righttitle:"$clabel" /showinfo
+4

Add the following to Mercurial.ini:

[tortoisehg]
vdiff = tortoisediff

[extdiff]
cmd.tortoisediff = C:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe
opts.tortoisediff = /base:"$parent" /basename:"$plabel1" /theirs:"$child" /theirsname:"$clabel"
0
source

All Articles