svn复制命令

时间:2012-06-13 11:17:30

标签: svn branch branching-and-merging

我理解这是一个非常noob的问题,但当我尝试使用以下命令从已存在的分支(而不是主干)创建一个新分支时:

svn copy svn+ssh://svn.example.com/software/branches/branch_name svn+ssh://svn.example.com/software/branches/new_branch_name  -m "Message"

我收到以下错误:

  

svn:在&s; svn + ssh://svn.example.com/software/branches'

中找不到存储库

我一次又一次检查,目录是否正确。我不明白为什么会这样。

1 个答案:

答案 0 :(得分:5)

啊,啊,终于弄明白了这个错误......命令应该是: -

svn copy svn+ssh://user@svn.example.com/software/branches/branch_name svn+ssh://user@svn.example.com/software/branches/new_branch_name -m "Message"

我错过了用户部分,但没有在指南中给出。

它现在绝对正常:D