I used a different version control tool, and this allowed me to get a "report of differences": all changes made to the file between version X and version Y (including lines added / deleted between each version, which may be many versions) in one text file. It was very convenient for situations when you are quite sure that some code was used in your file, but now it is not (convenient when your BA says to add something, and you think: "Didn’t I understand ? ").
The advantage is that you get one text file that has all the changes in the code base that you can perform. This is equivalent to doing a comparison for each version (from 10 to 9, from 9 to 8, etc.), and then saving the results of each comparison with a text file.
I see no easy way to do this in TFS. Is there a plugin / powertool that does this? Google gave me nothing.
source
share