Suppose you have 2 methods in a file:
BASE
----
m1
m2
Now both developers modify the methods slightly. But one developer adds a new method at the top of the file
MINE | THIERS
--------+--------
m1' | m0
m2' | m1''
| m2''
I want to see a comparison of m1'
vrs m1''
and m2'
vrs m2''
. The tools that I have been using (FileMerge & P4Merge) often seem to show m1'
vrs m0
and m2'
vrs m1''
.
Without seeing like for like its very hard to tell what has been changed. Is there a tool or a strategy to make these kinds of merges less painful?