pnewhook
pnewhook

Reputation: 4068

Diff/Compare Tool That Lets Me Write Comments On Differing Lines

I'm looking for a diff/compare tool that shows differing lines from two text files, and gives me a space to comment on those files. Ideally this application would have three panes, pane one would be file A, pane two would file B and pane three would be a comment I can enter to on why the files are different.

We're going to be using this diff tool to compare test and production environments. Sometimes it'll be justifiable that the two files are different but we need to have a space to explain why. I'd rather not write those comments in the files themselves.

I've used TortosieMerge, WinDiff and Beyond Compare. I like beyond compare the most because it lets me see the whole file, just the differing lines or the differing lines in context.

Tools that sit inside Visual Studio or eclipse are fine too.

Upvotes: 1

Views: 834

Answers (2)

CodeGen ToolBox
CodeGen ToolBox

Reputation: 1

I would like to suggest a high-efficiency software CodeGen to you. It's not only include TextCompare tools, but another Codec/Database tools is supported as well. For more detail, please kindly access the Github repository.

https://github.com/work7z/CodeGen

Upvotes: 0

Michael Burr
Michael Burr

Reputation: 340168

It sounds to me like you might want to use a code review tool for this (even if you're not really performing code reviews). They record diffs in a database and allow comments on those diffs.

A couple free ones are:

  • CodeStriker - I've used this and it works pretty well, but required more tweaking and mucking around in Perl that I'd have liked (that was a while ago, though)
  • Review Board - never used this, but it sure looks nice. I'm trying to get it installed at my current place of work.

Upvotes: 4

Related Questions