svn switch error - is not the same repository

前端 未结 5 1053
不思量自难忘°
不思量自难忘° 2021-01-29 22:02

I have recently moved the SVN server and now i am tring to relocate the working copies from my computer to the new server. But i get the strangest error. i do :

         


        
5条回答
  •  执笔经年
    2021-01-29 22:29

    Try using

    svn switch --relocate http://99.99.99.old/svn/company/project/trunk/web http://99.99.99.new/svn/company/project/trunk/web
    

    As noted by Sporino in the comments, since Subversion 1.7, there's a seperate relocate command:

    svn relocate http://99.99.99.old/svn/company/project/trunk/web http://99.99.99.new/svn/company/project/trunk/web
    

提交回复
热议问题