active questions tagged winmerge - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T07:08:21Zhttp://stackoverflow.com/feeds/tag/winmergehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1881594/use-winmerge-inside-of-git-to-file-diff1use Winmerge inside of Git to file diffeiu1652009-12-10T15:08:13Z2009-12-10T22:25:33Z
<p>Is there a way to use Winmerge inside of Git to do Diffs? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1200682/winmerge-how-to-ignore-differences-in-lines-with-a-special-ending-tag1Winmerge : how to ignore differences in lines with a special ending tagrekna2009-07-29T14:29:20Z2009-12-10T20:24:08Z
<p>I would like to ignore difference in lines, if one of the files has a line ending with //ignore
is this possible? how would the regular expression for the line filter be written?</p>
<p>tried
.*//ignore$
but this does not work</p>
http://stackoverflow.com/questions/1477236/ignoring-svn-folders-in-winmerge0Ignoring svn folders in WinMergeMartin2009-09-25T13:18:10Z2009-10-08T13:48:28Z
<p>I'm trying to recursively compare two subversion working copy folders using WinMerge.</p>
<p>Unfortunately, WinMerge displays lots of differencing files inside of the subversion control folders (.svn or _svn).</p>
<p>Is it possible to somehow exclude the subversion folders from the comparision? Or is there another (free) diff-tool which is able to do this?</p>
http://stackoverflow.com/questions/1534453/is-it-possible-to-use-winmerge-inside-visual-studio-2008-and-visual-source-safe-61Is it possible to use WinMerge inside Visual Studio 2008 and Visual Source Safe 6.0?Tim Santeford2009-10-07T21:53:44Z2009-10-07T22:02:55Z
<p>I would like to use WinMerge as the default diff tool inside VS2008 from the solutions explorer in place of the "Compare..." context menu item. Is this possible? I'm looking for a quick replacement of the current bland diff tool an I just like WinMerge better. I'm not interested in going to the folder explorer and doing the comparison there.</p>
<p>Im using Visual Source Safe 6.0 not TFS</p>
<p>Is this possible? Thanks in advanced!</p>
http://stackoverflow.com/questions/1313908/how-do-i-configure-tfs-to-work-with-various-merge-tools1How do I configure TFS to work with various merge toolsJustin Dearing2009-08-21T19:48:19Z2009-08-23T20:45:36Z
<p>Originally the question was "How do I configure WinMerge as the compare and merge tool for TFS". However, I am changing it because <a href="http://stackoverflow.com/users/21932/tehone">TehOne</a> answered this more general form of the question.</p>
<p>I would have though this would have been asked already on Stackoverflow. I found the answer elsewhere, but I am asking/answering here. It's now a community wiki.</p>
http://stackoverflow.com/questions/1126752/how-can-i-get-winmerge-to-keep-left-and-right0How can I get WinMerge to keep left and right?NotDan2009-07-14T17:11:04Z2009-07-14T21:25:28Z
<p>Using the TFS merge tool, I can click on the left side and the right side to keep both changes/conflicts. This is needed when I add a method and another team member adds a method in the same place and I need to keep them both. In WinMerge (file merge, not folder), it seems that I can only overwrite the right with the left. Is it possible to make WinMerge copy the left to the right, and keep the right?</p>
http://stackoverflow.com/questions/595885/using-winmerge-with-bazaar0Using WinMerge with BazaarPhiLho2009-02-27T18:03:19Z2009-04-03T19:58:19Z
<p>I searched a lot, found that some people claimed they did that, but I can't make it to work.</p>
<p>How to you use WinMerge, my favorite diff tool on Windows, with Bazaar?</p>
<p>I know difftools plugin (shipped with Bazaar) handles this but the controller.py file doesn't list it, and I fail to see where to specify a path. Looks like it searches in PATH variable, and reports <em>bzr: ERROR: Cannot find 'winmerge' in</em> (long list of paths).
I tried to put a .cmd file, then a shortcut to WinMergeU.exe in Bazaar's directory, renaming accordingly (winmerge.cmd, winmerge.lnk) the <code>register_diff_tool</code> parameter. No more error, but nothing is launched...</p>
<p>So, does somebody has any success using WinMerge (or perhaps some other Windows tool) with Bazaar?</p>
<p>I would be interested to use it with extmerge plugin too...</p>
<p><hr /></p>
<p><strong>EDIT</strong> After the first two answers, I tried some variants which I list here for reference. None worked:</p>
<pre><code># As suggested:
# Bad: bzr: ERROR: [Errno 22] Invalid argument: 'c:\\docume~1\\philho\\locals~1\\temp\\bzr_C:/Program Files/_Text/WinMerge/WinMergeU.exeh7angm.log'
wdiff = diff --using "C:/Program Files/_Text/WinMerge/WinMergeU.exe"
# Bad: bzr: ERROR: Cannot find 'C:Progra~1_TextWinMergeWinMergeU.exe' in <PATH>
wdiff = diff --using C:\Progra~1\_Text\WinMerge\WinMergeU.exe
# Variants:
# Bad: bzr: ERROR: [Errno 22] Invalid argument: 'c:\\docume~1\\philho\\locals~1\\temp\\bzr_C:/Progra~1/_Text/WinMerge/WinMergeU.exejuttft.log'
wdiff = diff --using C:/Progra~1/_Text/WinMerge/WinMergeU.exe
# Bad: bzr: ERROR: [Errno 22] Invalid argument: 'c:\\docume~1\\philho\\locals~1\\temp\\bzr_C:\\Program Files\\_Text\\WinMerge\\WinMergeU.exehpabjl.log'
wdiff = diff --using "C:\\Program Files\\_Text\\WinMerge\\WinMergeU.exe"
# Bad: bzr: ERROR: [Errno 22] Invalid argument: 'c:\\docume~1\\philho\\locals~1\\temp\\bzr_C:\\Progra~1\\_Text\\WinMerge\\WinMergeU.exe4gi5or.log'
wdiff = diff --using C:\\Progra~1\\_Text\\WinMerge\\WinMergeU.exe
</code></pre>
<p>Using:</p>
<pre><code>Bazaar (bzr) 1.11
Python interpreter: C:\Program Files\_Dev\Bazaar\python25.dll 2.5.2
</code></pre>
<p>Actually, the awful (and embarrassing) truth is that it appears that one of my earlier attempts worked, but I saw nothing... because I was testing against a committed file! I suppose I was expecting that by default it compared last two revisions or something.</p>
<p>Anyway, as I wrote in a comment, I don't want to put WinMerge directory in my already too long path, so I took at middle road, making a command file and putting it in Bazaar's directory which is already in the path.
At least it works, and I can easily add parameters if needed.</p>
<pre><code>[ALIASES]
wdiff = diff --using winmerge.cmd
# winmerge.cmd contains:
"C:\Program Files\_Text\WinMerge\WinMergeU.exe" %1 %2
</code></pre>
<p>Maybe I should put that as solution in the thread, although it lacks elegance.</p>
<p>For the record, while we are on the topic of external tools, I also added to bazaar.conf:</p>
<pre><code>editor = C:/Program Files/_Text/SciTE/SciTE.exe
</code></pre>
<p>It is used by commit (without -m option), for example.</p>
<p>Next step: extmerge. Looking closer, it doesn't seem WinMerge is usable there, not having 3-way merge. I might use Perforce's merge, it is free and I am used to it.<br />
Just a note for those as confused as me: extmerge isn't a GUI replacement for merge. If you run it, it will report no conflict, even if merge reports them. Actually, you have to run merge first, then extmerge to use the generated/altered files and do the job...<br />
If you want to use WinMerge anyway, perhaps to compare OTHER to THIS, you can use:</p>
<pre><code>external_merge = "C:/Program Files/_Text/WinMerge/WinMergeU.exe %o %t %r"
</code></pre>
<p>I hope my attempts/remarks here will be useful to some other people... :-)</p>
<p><strong>[UPDATE]</strong><br />
Oookaaay!<br />
So I was confused! A message in the Bazaar mailing list enlightened my poor soul:
"<em>You know that bzr also provides diff --using, right? You prefer the version in difftools?</em>" -- Aaron Bentley, 2009-04-03 in <em>Re: difftools, ‘bzr diff --using footool’, and ‘diffuse’</em></p>
<p>Aargh! No, I didn't know that.<br />
I removed difftools plugin, edited my line to:</p>
<pre><code>wdiff = diff --using "C:/Program Files/_Text/WinMerge/WinMergeU.exe"
</code></pre>
<p>and it worked perfectly fine, out of the box! I am not sure why this difftools plugin isn't marked as obsolete.</p>
<p>I leave this question as a reference in case other newbies like me are confused too. And I can at least elect an answer. Thanks!</p>
http://stackoverflow.com/questions/548520/how-can-i-configure-mercurial-to-use-winmerge-for-merges-under-cygwin1How can I configure Mercurial to use WinMerge for merges, under cygwin?Joel Spolsky2009-02-14T05:01:07Z2009-02-14T05:06:26Z
<p>When Mercurial is running under cygwin, it's a bit tricky to figure out how to spawn <a href="http://winmerge.org/" rel="nofollow">WinMerge</a> to resolve merge conflicts. How can I do this?</p>
http://stackoverflow.com/questions/305152/tortoisesvn-identifies-modified-file-so-why-does-svn-diff-report-no-differences2TortoiseSVN identifies modified file - so why does svn diff report no differences?Matthew Hegarty2008-11-20T12:34:35Z2008-11-20T16:41:52Z
<p>I have a folder checked out using TortoiseSVN. If I copy a newer version of a file over the existing versioned file, TortoiseSVN correctly identifies that the file is modified.
However when I do a "diff with previous version", it reports "no differences".</p>
<p>If I use WinMerge I can see that the files ARE different.</p>
<p>Does anyone know why the TortoiseSVN diff is failing?</p>
http://stackoverflow.com/questions/174365/how-to-detect-a-file-modifications-with-tfs1How to detect a file modifications with TFS?Elijah Manor2008-10-06T13:51:23Z2008-10-07T12:40:24Z
<p>It seems that when I use a tool (such as winmerge) to update my codebase... my Visual Studio Team System (VSTS) integration with Team Foundation Server (TFS) doesn't seem to pick it up.</p>
<p>How do I know which files to check out and check back in? Is there something I am missing? Is this a feature that isn't part of VSTS & TFS?</p>