vote up 16 vote down star
3

I committed a chageset to TFS last night before leaving. This morning I decided my change was badly written, so I wanted to do a rollback on it.

In subversion, this was pretty straightforward. However, it seems to be an incredible headache in TFS.

Am I being dense? Is there a simple way to do this I'm missing?

These are the options I found -

  1. manually get prior version of each file

    b. check out for edit

    c. FAIL - the checkout (in VS2008) forces me to get the latest version

  2. download Team Foundation Power Tools

    b. issue rollback command from cmd line

    c. FAIL - won't work if there are any other pending changes

  3. manually undo my changes, then commit a new changeset

I'm flabergasted at how tedious this is. I think even VSS supported an easier mechanism to rollback a change.

flag

73% accept rate
1  
VSS does not have rollback. They do have another feature that happens to be named "rollback" but in TFS terms it's really a Destroy. (a) you can only do it from the tip; it won't work if any additional changes have been checked in subsequent to the one you want to roll back (b) it PERMANENTLY REMOVES the changes from the database – Richard Berg Sep 4 at 3:49

7 Answers

vote up 10 vote down
  1. Download and install Team Foundation Power Tools.
  2. Open up the Visual Studio command prompt
  3. Navigate to the directory on the file system that TFS is mapped to. If you don't do this you'll get an "Unable to determine the workspace" error when you try to roll back
  4. Make sure everything else is checked in or shelved
  5. run tfpt rollback to bring up the interface.
  6. Choose the changesets you want to rollback
  7. Check in the new versions of the files you rolled back

The big disadvantage of the tool is that it will want to refresh everything in your workspace before you can merge. I got around this issue by creating a new workspace just for the rollback which mapped directly to the place in the source tree where the affected files were.

If you need help to figure out which changesets to roll back, I find the code review tool in the free Team Foundation Side Kicks add-in very helpful.

link|flag
+1, these side kicks look cool! – slf Sep 28 at 16:07
Perfect, very helpful. – Jonathan Moffatt Nov 26 at 0:18
vote up 6 vote down

Your solution #1 will work: 1. manually get prior version of each file

  1. check out for edit

  2. Checkin the file and Ignore server changes when prompted.

The reason why it failed for you is because you must have the "Get latest version of item on check out" option turned on. Turn this option off by going to Tools...Options...Source Control...Visual Studio Tema Foundation Server and unchecking "Get latest version of item on check out"

Cheers

link|flag
Yeah - this worked for me. – teedyay Feb 18 at 11:48
vote up 4 vote down

Ahh, just found this CodePlex Article on using TFPT.exe (power tool) to rollback a changeset.

Hope this helps you out.

link|flag
vote up 2 vote down

Another way to make your option 1 work is to reverse the order of the steps:

  1. Check Out the items
  2. Get Specific Version to the old version
  3. Check in (ignoring the "warning server version is newer" dialog)

This will work even if you have Get Latest On Checkout set.

link|flag
vote up 1 vote down

If you did 1 check-in and you just want to undo it, that has a changeset # associated with it. Do a history on the folder in question to see the bad changeset. Open it up to see the details (all files changed, etc).

I believe that you can restore or undo a changeset from that screen, but my Visual Studio just crashed when I tried to do this. /sigh -- I definitely share your pain.

Where do I downmod TFS on this site?

link|flag
Nope, rollback from the History UI was only added in TFS 2010. – Richard Berg Sep 4 at 3:45
vote up 1 vote down

I think that the Team Foundation Power Tools is the way to go. If there are pending changes you can move them to a shelveset then undo or check in all pending changes before running the rollback command. See http://www.codeplex.com/VSTSGuidance/Wiki/View.aspx?title=How%20to%20undo%20a%20check-in&referringTitle=Source%20Control%20Practices%20at%20a%20Glance for more information.

link|flag
vote up 0 vote down

Ben Scheirman - the Changeset Details dialog does not have rollback functionality.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.