2015-04-19 103 views
3

我创建了一个新的Visual Studio Online帐户,以便将我们的所有项目从TFS 2010(on = premises)迁移到VSO。我使用OpsHub迁移实用程序来帮助完成此过程。创建新的团队项目时出错n Visual Studio Online

在我最初的测试过程中,我创建了一个关于VSO的团队项目,并从TFS 2010迁移它,一切都很顺利。然后,我删除了VSO上的团队项目,因为它仅用于测试。

在那之后,我试图使用相同的名称重新创建VSO在同一个团队项目,我得到以下错误:

The Team Project name (name of the project here) was previously used and there are still TFVC workspaces referring to this name. Before you use this name, the owner of each workspace should execute the Get command to update their workspaces. First 1 workspaces found using this name are: (name of the user here).

我不太明白,我应该做些什么来解决这个问题。你能帮我么?

+0

我在Visual Studio在线确切的问题。即使我删除了特定集合的所有工作区,VS Online也表示所有的VS Online Organization成员都应该执行* GET *命令。 –

回答

2

今天早上我的确有同样的问题。它看起来像你一直无法从TFS中删除旧的引用。这样做的方法是在系统上使用命令行。

Source

You need to use TF command on Visual Studio command prompt to remove the old workspace. Syntax is:

tf workspace /delete (name of the project here);(name of the user here)

as this was TFS Online, it was Microsoft Account, so in my case actual command was

tf workspace /delete "MIWORKSPACE;[email protected]"

+0

我认为正确的使用方法是没有括号:* tf workspace/delete MIWORKSPACE; [email protected] * –

+0

是的,你就在那里。我已经为约翰更新了答案。 – kferg

+0

谢谢你的帮助:) –

相关问题