tfs: how to unlock changes

2019-04-24 18:43发布

I originally edited a file, which did a checkout. I received a new computer, and now I want to edit the file. I don't care about the original edit.

TFS reports that another user has an exclusive lock on the file. It's not actually another user, it's me, but the machine is different, so the workspace is different.

I tried unlocking with the tf commandline using the following command:

tf lock /lock:none /workspace:oldmachinename;domain\me /recursive $/projectname/directory /s:http:tfs:8080/tfs/project

I get no errors, but when I go into Visual studio 2010 (We're using tfs 2010 as well) The files remain locked.

What am I doing wrong?

4条回答
虎瘦雄心在
2楼-- · 2019-04-24 19:09

Have you tried using TFS powertools?

Once you have that, you can right-click on your folder or file, and choose Find in Source Control -> Status. After you click Find, it should show you all the check-outs, or files that are checked-out

You should then be able to right-click on the checkout and choose "Undo..".

While this is generally issuing the same command line arguments, I've had good luck with it.

查看更多
\"骚年 ilove
3楼-- · 2019-04-24 19:13

If you aren't intending to use the old workspace again, it would be a good idea to (carefully) delete the entire workspace. This will clean up everything relating to it, and mean that it no longer "pollutes" listings of your active workspaces, etc.

You can also break the lock on a single file, but you will need to have appropriate permissions to be able to break locks. See here for a specific explanation of how to do it.

查看更多
家丑人穷心不美
4楼-- · 2019-04-24 19:15

Try something like this:

The following example unlocks and makes all files in the src/ Team Foundation version control server folder available for check-out and check-in by other users.

c:\projects>tf lock /lock:none src/

More documentation here: http://msdn.microsoft.com/en-us/library/47b0c7w9.aspx

查看更多
姐就是有狂的资本
5楼-- · 2019-04-24 19:22

Deleting the old workspace is probably what you want to do. You can do this with the tf workspace command, but an easier method is to use the free TFS Sidekicks add-on which gives you a GUI to manage and delete workspaces.

查看更多
登录 后发表回答