我理解这是一个非常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'
中找不到存储库
我一次又一次检查,目录是否正确。我不明白为什么会这样。
答案 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