1

I am working on a group project in Visual Studio and using TFS for source control. I was working on the project from my laptop and the hard drive broke. Now the solution is eternally checked out by my laptop user. How can I clear the checkout from my laptop? None of the changes are needed, I have the log in credentials, and I can still get into Windows on the laptop (the secondary hard drive broke).

4

1 回答 1

1

最简单的方法是使用 tf.exe 命令行实用程序。

找到确切的工作空间,如果不知道,使用:

tf workspaces /computer:computername

然后使用以下命令删除该工作区:

tf workspaces /remove:workspacename

更多信息:http: //msdn.microsoft.com/en-us/library/54dkh0y3.aspx

于 2012-07-29T17:18:01.423 回答