Reputation: 30185
I need to have several changesets rolled-up into a single list of changed files, so that I can code-review the collective differences (from an initial changeset, up through an arbitrary ending changeset), rather than reviewing all changes through the individual intervening changesets.
I'm using VS 2k8. What is the easiest way to accomplish this?
Upvotes: 2
Views: 585
Reputation: 30185
The answer is to open a Visual Studio explorer window, and type this:
tf folderdiff "$/MyStuffInSource;C88986~C91716" /recursive
That causes a window to open that shows the added, removed, changed files - and allows diffs to be launched on the individual files. Superb!!
Upvotes: 2