TFS 2010 - Deleting a folder in Visual Studio solution before check-in of changes

浪子不回头ぞ 提交于 2019-12-05 11:08:35

问题


We are using TFS 2010 and facing a problem with deleting a folder inside of a solution in Visual Studio.

In the latest version of checked-in code, the directory in question has files in it.

One of the developers decided to move the files in that directory to another location within the solution. He then tried to delete the old folder but go the following error:

This operation cannot be completed. 
You are attempting to remove or delete a source-controlled item where the item is either exclusively locked elsewhere or otherwise unable to be deleted from source control.

Does anyone know what the problem is with trying to do this and is there a way to get around it?


回答1:


You cannot delete a folder that has pending changes on any of its children (including if any of those children are being moved out of the folder - they're still children until that changeset is checked in.)

You'll have to do this in two steps: first, move the children out of the folder and check those changes in, then delete the folder as a separate changeset.




回答2:


If the folder you want to delete exists on your local machine, just add a new file to the folder from within the Visual Studio IDE (it doesn't matter what type of file). Then you should be able to delete the folder from within VS.

If the folder was deleted from your local machine, create a new one with the same name and then follow the above steps.



来源:https://stackoverflow.com/questions/6116482/tfs-2010-deleting-a-folder-in-visual-studio-solution-before-check-in-of-change

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!