相关文章推荐
耍酷的刺猬  ·  Asynchronous service ...·  1 年前    · 
高兴的显示器  ·  家庭服务器 ...·  1 年前    · 
礼貌的针织衫  ·  nodejs 死循环_linux ...·  1 年前    · 
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I understand that this a very noob problem, but when I try to create a new branch from already present branch (not trunk) with the command :

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

I get the following error :

svn: No repository found in 'svn+ssh://svn.example.com/software/branches'

I have checked again and again, the directory is correct. I don't understand why this is happening.

@malenkiy_scot : its says the same thing 'svn: No repository found in 'svn+ssh://svn.example.com/software/branches'' – potato man Jun 13, 2012 at 11:34

Ahh finally figured out the mistake... the command should have been :-

svn copy svn+ssh://[email protected]/software/branches/branch_name svn+ssh://use[email protected]/software/branches/new_branch_name -m "Message"

I missed out the user part, which wasn't given in the guide.

it works absolutely fine now :D

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.