2013-03-19 84 views
0

我嘗試使用下面的命令來刪除svn的現有標籤:問題的svn delete命令

C:\>svn delete --username xxx --password yyy http://subversion-practice.sweng.xyz.com/cvn/repos/ps/port/tags/PORT_0310xx_05_88_tools -m Deleting PORT_0310xx_05_88_tools 2>&1 

但它失敗,出現以下錯誤:

svn: 'C:/PORT_0310xx_05_88_tools' isn't in the same repository as ' http://subversion-practice.sweng.xyz.com/cvn/repos/ps/port '

想不通爲什麼它尋找'C:/ PORT_0310xx_05_88_tools'而不是'http://subversion-practice.sweng.xyz.com/cvn/repos/ps/port/tags/PORT_0310xx_05_88_tools'。

回答

1

對於犯有空格的消息,你必須使用-m "Deleting PORT_0310xx_05_88_tools",否則只有第一個字是-m參數,其餘的將是刪除

Each item specified by...

額外的目標