Reputation: 12898
I'm used to VSSConneXion, and love the feature 'Review Changes' where I can go through every changed file and comment the change while looking at it:
Now I'm trying to get used to SubVersion and Tortoise. Is there a similar feature available? I can get a list of changed file, and I can diff each file for changes, but I can't find a way to comment on the changes while looking at the diffs.
Upvotes: 3
Views: 1231
Reputation: 26782
I typically simply use the TortoiseSVN commit dialog for this.
Very simple, no extra tools needed.
Upvotes: 3
Reputation: 71939
If you're asking for generic code review, there are lots of tools that work with svn
. One of the most prominent is ReviewBoard.
If you're asking about a way to add commit log messages, then there's a bit of a conceptual mismatch: svn
uses atomic commits, so all the changes in a given commit get the same message.
Upvotes: 4