Cleanup TFS Workspaces
If you did several chekouts from TFS on your local machine using 2 different users, there’s a mess up of workspaces on your local computer and you may have issues doing other checkouts.
To clean up the workspaces, use the following commands in the Visual Studio command line tool:
tf workspaces to list the checkouts done on the machine
tf workspaces /remove:* or tf workspace /delete <workspacename>;<workspaceownername>
and here you are, your development computer is now ready for another clean checkout
Advertisement