vote up 15 vote down star
5

I want to be able to do a peer code review with Subversion, but what's the easiest way to do this without installing a server application or paying for an online service?

PS: This is a .Net project in Visual Studio.

flag

43% accept rate
maybe i don't understand your question - you want to use subversion as version control for cod review? so reviewers check out the code; make notes/refactor, and check it back in? is that the idea? – cori Sep 19 '08 at 4:51

12 Answers

vote up 4 vote down

If you are using Eclipse, I recommend the Jupiter plugin.

link|flag
edited to fix link. – scubabbl Sep 19 '08 at 4:51
Sorry, this is all .Net development in Visual Studio. – gabosgab Sep 19 '08 at 4:55
First time that I hear about Jupiter. Sure I will try it. – marcospereira Sep 19 '08 at 5:38
vote up 1 vote down

If you are using TortoiseSVN, you should open the Log from the root of the branch you are reviewing. Select the revision in the top pane, and the bottom pane will list all the files that have changed. I haven't used it for a while, but you should be able to view the diffs of the changes on the files that changed in the revision.

link|flag
vote up 1 vote down

Can the developers sit together? Can they do pair programming? If they can, you won't need a tool. :-)

Kind Regards

link|flag
Still may wish to capture results of the review. – Brian Carlton Oct 28 at 21:21
vote up 0 vote down

Use the TortoiseDiff, put it on a big screen with everybody sitting around the screen and start mapping changes to requirements. That will be great but if they are all together all the time, just make them (or you) do peer reviews frequently and no code review will be needed except that you want to get everybody on the same page.

link|flag
vote up 4 vote down

I actually figured out another easier way to do this.

Creating the Diff Pack

  1. Make the changes that you want to have reviewed.
  2. Goto the root of your project in Windows Explorer and right click, 1. Click Tortoise SVN -> Create Patch
  3. Select the files you want to appear in the review. Click OK
  4. Save your diff pack to a file name that describes the changes.

Viewing the Diff Pack Against Local Changes

  1. Copy the pack to the project root, if it's already there.
  2. Right click on the file 1. Click Tortoise SVN -> Apply Patch
  3. Double click the file that you want to view in the File Patches pane
  4. When finished, close the window to avoid applying the patch to your local store.

Viewing the Raw Changes

  1. Just double click the patch file.
link|flag
vote up 0 vote down

Why you want to connect the review process with your IDE ?
It's sounds a little bit disconnected. Usually review system will be integrated with your source control and not IDE.
You can google for "code review tools" and will find a lot of options.
Unfortunately the one i can recommend you can't get :) it's home grown,
But i think that tools is a second stage,for the start you can do a code review in pair. Just using simple diff program before you committing your code to source control with a team leader/senior engineer will do the magic. You will see how many bugs you will prevent by simple code review without any tools.

link|flag
vote up 4 vote down

You should set up trac, it has integration with subversion and has a peer review plugin on trac hacks. This will give you the ability to keep trac of code reviews easily without having to manually do diffs.

Also, if trac/peer review plugin is to much overhead for you... VMWare is developing a code review application that is completely open source here.

link|flag
vote up 1 vote down

I would say to look at this posting. I personally like Rietveld myself.

link|flag
vote up 0 vote down

I'll recommend 'CodeReviewer' from SmartBear Software.

It's not free, but I think it does its job quite well for its bucks.

http://www.smartbearsoftware.com/codecollab-codereviewer.php

link|flag
vote up 0 vote down

Check out Codestriker -- it's free and open source. We've been using it for several years and it has great integration with svn.

link|flag
vote up 0 vote down

The code review plugin for Trac is really nice. Actually the whole source code integration piece for Trac is nice. Check it out, you won't be disappointed.

link|flag
vote up 0 vote down

What are the steps need to get Peer Review Icon in trac after successfully install? -- Ramesh

link|flag

Your Answer

Get an OpenID
or

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