I have some changesets in a TFS 2008 branch which were not merged back into trunk. Time has passed, and now no-one is entirely sure which changesets have made it into trunk. I understand that TFS 2010 allows you to see graphically which branches a changeset has been merged to, but how can I find this out in TFS 2008?
Asked
Active
Viewed 987 times
1 Answers
3
I think all you can you do is use the TF merge command to determine which changesets have not been merged into another branch - one branch at a time.
tf merge /recursive /format:brief /candidate $/Branch1 $/Branch2 /preview
will show you what changessets from branch1 are candidates to be merged into branch 2. Of course you can put this into a script to run multiple times.

Preet Sangha
- 64,563
- 18
- 145
- 216
-
That does the trick for me, thanks; fortunately I'm only interested in one branch and trunk, so it was quite straightforward to work out which changesets were missing. Turns out I had almost 6 months of changesets which needed to be merged, and it took me the best part of a week, but at least my branch is now back up to speed. – David Keaveny May 17 '10 at 01:51