I have the following branch structure:
- Main
|- Release 1
|- Release 1.1
|- Release 2
I want to reparent Release 1.1 to Main so it looks like
- Main
|- Release 1
|- Release 1.1
|- Release 2
The reason I want to do this is because many changesets will need to be merged from Main to Release 1.1 but not to Release 1
I have been trying to do a baseless merge from Main to Release 1.1 using the following command:
tf merge /recursive /baseless $/Main $/Releases/Release1.1
It works great, once it is checked in, I can reparent Release 1.1 to Main.
But the thing is, this command merges everything from Main and I just want to create a merge relationship. I don't want to merge everything from Main to Release 1.1 since many other changes for other branches have occurred meanwhile.
Is there a way to achieve that or will all the future changesets need to be baseless merged every single time?