Reputation: 1307
I performed the following actions in TFS:
How can I reapply the changes? There are three changesets and about 80 files in question.
Upvotes: 0
Views: 1633
Reputation: 1307
What I ended up doing was a forced merge:
tf merge /r /force $/source/trunk $/source/branch1 /v:C123~125
I will watch this set of changes carefully when we reverse integrate back into the trunk.
I also tried a tricksy workflow of using tfpt to rollback, shelve, and unshelve /migrate. Unfortunately the conflict resolution dialogue in tfpt unshelve is a bit lacking - missing things like default buttons and stuff, so I had to mouse-click half a dozen times or so per file. So I decided after a few files to try something else first.
Upvotes: 0
Reputation: 23157
A couple ways to do this, but probably the quickest here would be:
You could also consider rolling back the rollback changeset in the trunk and redoing what you did (minus the undo).
Upvotes: 2