Is there any existing software which can help enforce code review process like below:

  • Dev user commit their changeset with proper comments, but the changeset does not goes into subversion repository directly, it will be pending in a "review software".
  • Reviewer can see all pending changesets in the "review software", review the changeset and decide whether to allow the change into the code trunk.
  • The dev user will receive notification either his changeset was accepted and merged into code trunk, or was rejected.
link|improve this question

0% accept rate
A nice idea. Have you found a solution? – Benjamin Jul 16 '10 at 2:32
feedback

migrated from superuser.com Feb 1 '10 at 7:03

This question came from our site for computer enthusiasts and power users.

6 Answers

Trac-Hacks has a CodeReview plugin and a PeerReview plugin that should integrate with your existing repository. (Obviously you'd need a working Trac installation.)

link|improve this answer
Yes we have trac installation. I checked the two plugins you mentioned. I've not installed them yet, but from what I understand, they are implementing "post-commit review" rather then "pre-commit review" I want. – Long Cheng Feb 2 '10 at 2:15
well, you could (theoretically) have it commit to a (temporary?) intermediate branch (or even a separate, intermediate repository) for review, then committed to trunk after acceptance. as i understand it, the initial commit is necessary to get the changeset into svn/Trac in the first place. otherwise your tool would need to reimplement that functionality entirely; it makes sense to use svn since it's already there. – quack quixote Feb 2 '10 at 21:29
feedback

If you're open for alternatives to Subversion, this is a textbook git workflow that you might want to check out: Pro Git

link|improve this answer
1  
Agree that this is a textbook reason to use a DVCS. – Michael Hackner Feb 1 '10 at 12:50
I agree, but we can not afford to change the existing subversion source repository. – Long Cheng Feb 1 '10 at 13:44
feedback

You could try Review Board. You can have the developer upload a diff against the trunk for review. If the review is accepted, the diff can be applied to the trunk.

link|improve this answer
feedback

CodeCollaborator from SmartBear Software can be used with SVN to perform pre-commit reviews. The locally modified files in the user's checkout are sent to a web server for review.

The tool is not free, but I always found the price reasonable. I used it in a corporate SVN environment for years with very good results.

link|improve this answer
feedback

I've used ReviewBoard. It's ok, but does not deal with multiple pending commits (a stack of patches) well at all, as all diffs are done vs. the repository, and you can't (so far as I know) give it a diff which is not vs. the repository. Because of this, if your policy is no commits unreviewed, it can slow you down, because only contextually independent diffs can be up for review at a time. If you have 10 diffs that are linked together in a sequence, one depending on the other, you can't load them all up into reviewboard at once, you have to do one, review it, do the next, review it, etc. It becomes a process bottleneck for purely technical reasons.

For this reason, I prefer just emailing patches around for review.

link|improve this answer
feedback

I am not sure whether our new eclipse plugin (Agilereview) is the thing you are looking for. But with this plugin it is possible to switch to the review perspective and to the java perspective in some seconds. And the comments (saved in XML files) could be transfered with evereything (eg. SVN, GIT, Mail,...) you would like to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.