I have a TeamFoundationServer
2015 with one Project (let's name it ProjectA).
ProjectA contains three different solutions (let's name them SolutionA, SolutionB, SolutionC)
Under this TFS-Project (ProjectA
) there are different Branches (let's name them BranchA
, BranchB
, etc)
Each week we do a merge from BranchA to BranchB.
Now the interesting part: Within one week I do update SourceCode of SolutionA and SolutionB. Now when the weekly merge appears I only want for example to merge all changes made to SolutionA. To do this I manually check all my changesets which belong to SolutionA and then I merge them. This is often very time consuming and the question is if this can be achieved easier.
So I am looking for some kind of way to assign my source-code to some specific tag or something like that. So all I do is then: search for the tag "XYZ"
and merge all changesets which belong to that.
Thank you very much in advance.