Is there a desktop-based tool that's used for code reviews or do we just have to print out the code and mark it up by hand?
|
closed as not constructive by Bill the Lizard♦ Feb 15 '12 at 14:35
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
This largely depends on what format you need the comments in and whether you want them to edit your changes, and how you want them to find their way back into your sandbox and then back into source control. What's wrong with copying and pasting the changes into Word and letting people comment using change tracking? Sounds primitive, but it's not clear what your requirements are? Do you need to share your deltas with other developers for them to build and debug locally and possibly make additional edits, or use inline comments? One of the really powerful things about TFS source control is shelvesets. Your code changes can be shelved persistently and centrally and can be shared with others and reviewed, but they don't get into source control until you actually check them in. Since our team is distributed across several countries and sites this works really well for us, since you can email the shelf URL to another team member to review overnight without trying to find a convenient time to do a webex for the peer review. If your version control system doesn't support shelving in this way, then the only other way to do this would be to have a private branch for your changes that can be used for review\collaboration and then when everyone is happy you merge the deltas into the production branch. |
|||
|
|
|
Just a few:
|
|||||
|
|
Do you need desktop-based or just computer based? Check out Crucible: http://www.atlassian.com/software/crucible/
|
|||||||||||||||||||
|
|
I am not sure if you want to review Java code or .Net etc as these static code tools are dependent on the language constructs/principles/grammar/spec etc. Identify Bug Patterns etc
Cyclomatic comlexity
Coupling and Cohesion
Coding Standards
Test Coverage Tools
Here you can find more comparisons if you want more details Most of these tools can run on desktop either as standalone or as eclipse/IDEA (or similar IDE for .Net) plug-ins. They also can be integrated into your build process. Most of them also overlap on the functionalities they provide. |
|||||
|

