2015-04-19 106 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

謝謝你的幫助:) –

相關問題