How can I check in which branches the TFS 2008 changeset has been added?

I have several sets of changes in the TFS 2008 branch that have not been merged back into the trunk. As time passed, and now no one is sure which modifications turned it into the trunk. I understand that TFS 2010 allows you to graphically see which branches a change set has been added to, but how can I find out in TFS 2008?

+4
source share
1 answer

I think all you can do is use the TF merge command to determine which changes have not been merged into another branch - one branch on time.

tf merge /recursive /format:brief /candidate $/Branch1 $/Branch2 /preview 

will show you which variables from branch1 are candidates for merging into branch 2. Of course, you can put this in a script to run several times.

+3
source

Source: https://habr.com/ru/post/1307616/


All Articles