How to organize continuous code reviews?

Posted by yegor256 on Programmers See other posts from Programmers or by yegor256
Published on 2012-10-18T15:24:05Z Indexed on 2012/10/18 17:24 UTC
Read the original article Hit count: 281

Filed under:

We develop in branches. Before a branch gets merged into the main stream (master branch) we review the changes made, by creating a new "code review" in Crucible. Reviewers add their comments to the code review and the ticket/branch gets bounced back to the author, if it needs to be improved.

After the improvements are made we get this branch/ticket again back to the code review. We again create a new code review in Crucible, loosing all previously made comments. We simply start from scratch. It's a big waste of time.

Do you know any tools that support a continuous mode for reviews, where we don't need to start from scratch every time, but can pick up the comments already made (re-start the review, so to speak).

© Programmers or respective owner

Related posts about code-reviews