This is what I am trying to do in TFS (a trivial operation in CVS)
Statements:
- There are 2 independent code trees in TFS, corresponding to:
- HEAD development
- STABLE version.
Something like this:
$/MyProduct/HEAD/<files>
$/MyProduct/STABLE/<files>
- I have a few changes in HEAD that I need to backport into STABLE.
- The changes are represented in a ChangeSet
Does you know if it is possible to do the following operation in TFS:
- Create a patch file from a TFS changeset number, which is based on the HEAD tree
- Apply the patch in a different TFS tree, in case STABLE
- Have the merge tool to merge the difference.
What I have now is a bunch of scripts that work outside TFS - but it would be much better to have this feature inside TFS.
This list seems to discuss this, Apply specific changeset from one TFS instance to another - But what it basically says is that there is NOT an internal way of doing my operation.
I wonder if someone know some other secret.