Using mercurial and beyond compare 3(bc3) as the diff tool? help needed - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T20:53:31Zhttp://stackoverflow.com/feeds/question/323521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/323521/using-mercurial-and-beyond-compare-3bc3-as-the-diff-tool-help-needed6Using mercurial and beyond compare 3(bc3) as the diff tool? help neededmhd2008-11-27T11:30:08Z2009-07-31T07:50:39Z
<p>Hi,
<br>
in windows I am able to use winmerge as the external diff tool for hg using <i>mercurial.ini</i>,etc.
<br>
Using some options switch that you can find in web(I think it's a japanese website)
Anyway, here
for example:</p>
<pre>hg winmerge -r1 -r2</pre>
will list file(s) change(s) between rev1 and rev2 in winmerge. I can just click which file to diff
but for bc3:
<pre>hg bcomp -r1 -r2</pre>
will make bc3 open a dialog which stated that a temp dir can't be found.
The most I can do using bc3 and hg is
<pre> hg bcomp -r1 -r2 myfile.cpp </pre>
which will open diff between rev1 and rev2 of myfile.cpp
So,it seems that hg+bc3 can't successfully acknowledge of all files change between revision.
Only able to diff 1 file at a time.
<br>
Anyone can use bc3 + hg better ?
<br>
edit: Problem Solved !
<br>
Got the solution from scooter support page.
I have to use <i>bcompare</i> instead of <i>bcomp</i>
Here's a snippet of my mercurial.ini
<pre>
[extensions]
hgext.win32text =
;mhd adds
hgext.extdiff =
;mhd adds for bc
[extdiff]
cmd.bc3 = bcompare
opts.bc3 = /ro
;mhd adds for winmerge
;[extdiff]
;cmd.winmerge = WinMergeU
;opts.winmerge = /r /e /x /ub
</pre>
http://stackoverflow.com/questions/323521/using-mercurial-and-beyond-compare-3bc3-as-the-diff-tool-help-needed/499666#4996661Answer by mrrage for Using mercurial and beyond compare 3(bc3) as the diff tool? help neededmrrage2009-01-31T22:02:22Z2009-01-31T22:02:22Z<p>I had to add the following to make it work on my machine:</p>
<pre><code>[extensions]
extdiff =
[extdiff]
cmd.bc3 = C:\Program Files\Beyond Compare 3\BCompare.exe
opts.bc3 = /ro
</code></pre>
http://stackoverflow.com/questions/323521/using-mercurial-and-beyond-compare-3bc3-as-the-diff-tool-help-needed/1023463#10234634Answer by refack for Using mercurial and beyond compare 3(bc3) as the diff tool? help neededrefack2009-06-21T08:55:39Z2009-06-21T08:55:39Z<p>Beyond-Compare-3 is an amazing tool.
I recommend a few tweaks to the setup:</p>
<pre><code>[extdiff]
cmd.bcomp = C:\Program Files\Beyond Compare 3\BCompare.exe
opts.bcomp = /leftreadonly
[merge-tools]
bcomp.executable = C:\Program Files\Beyond Compare 3\BComp
bcomp.args = /leftreadonly /centerreadonly $local $other $base $output
bcomp.priority = 1
[ui]
merge = bcomp
[tortoisehg]
authorcolor = True
vdiff = bcomp
</code></pre>