vote up 4 vote down star
1

I'm working on a project with a team where we check in early and often. Individual checkins are completed to the satisfaction of the developer doing the change (including tests where possible) but sometimes the direction of work changes slightly and previous commits need to be reverted and done another way. Or, stub code is filled out in later commits.

When it comes time for code review, there's a sequence of commits all tagged with the same bug tracking id number. It's easy to get a list of such changes. When a reviewer looks through the changes one by one, sometimes there will be a commit A that is undone or modified by a later commit B as part of the same review. This can make reviewing more difficult.

If only one developer was working on the file for the duration of the change, then it's easy to do a diff between the original state of the file and the final state of the file. The problem arises when another developer happens to have made unrelated changes in the same file, or even in the same functions.

How do you handle this situation? Are there tools that, given a sequence of patches to a file, can give the moral equivalent of a diff between the first and last versions, but only including a subset of those patches?

Come to think of it, I could create a temporary branch in git starting from before the first related change, and cherry-pick the changes relevant to the review. Hopefully there won't be too many conflicts that need to be resolved (and if there are, then the whole lot should be reviewed at once anyway). Any other ideas?

More info: This happens to be a big legacy system where a single change might touch multiple files. The files are big and crufty - too big to just review the final product without an indication of what might have changed.

flag

4 Answers

vote up 0 vote down

See http://www.semdesigns.com/Products/SmartDifferencer/index.html for a tool that is parameterized by langauge grammar, and produces deltas in terms of language elements (identifiers, expressions, statements, blocks, methods, ...) inserted, deleted, moved, replaced, or has identifiers substituted across it consistently. This tool ignores whitespace reformatting (e.g., different linebreaks or layouts) and semantically indistinguishable values (e.g., it knows that 0x0F and 15 are the same value).

link|flag
vote up 1 vote down

It turns out you can do this fairly nicely in IntelliJ IDEA if you've got that tool:

Select Version Control | Show Changes View.

On the left hand side you select repository and click all of the revisions you want to review.

In the right hand pane you will get a list of all the files that are affected by the revisions you have selected. When you choose "diff" you will see the internal changes in the selected changesets. Internal re-works that occur within the commits are not shown (as can be expected)

link|flag
vote up 0 vote down

Uh, just look at the last state of the file.

(Branching for each change is a PITA. Don't do it.)

link|flag
Unfortunately, we're working on a legacy system with huge crufty source files that are thousands of lines long. It's not feasible to just look at the current state of the file and discern what happened - chances are good that the reviewer hasn't seen the rest of the file anyway. Diffing is required. – Greg Hewgill Sep 17 '08 at 4:22
vote up 2 vote down

I think you should be branching to do your changes. See my post here.

link|flag
We have chosen to commit incremental development to the trunk in order to avoid the "big bang" problem where a developer takes weeks or more to develop a solution, then drops the whole thing in at once. Of course this would be after review, but doing frequent commits helps with integration testing. – Greg Hewgill Sep 17 '08 at 0:35
what do you mean by drops the whole thing at once? – Brian R. Bondy Sep 17 '08 at 1:20
When a developer is working on a work item on a branch, they are isolated from the rest of the team. It may be perfect work on the branch, but when it's merged into the trunk there is the potential for integration problems. Frequent commits to trunk help identify such problems earlier. – Greg Hewgill Sep 17 '08 at 1:41
from experience integration problems are minimal – Brian R. Bondy Sep 17 '08 at 2:07

Your Answer

Get an OpenID
or

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