我正在运行VisualSVN作为我的SVN服务器并使用TortoiseSVN作为客户端.我刚刚将服务器从mach1重命名为mach2,现在无法使用SVN,因为它正在http:// mach1:81 /而不是新名称http:// mach2:81 /中查找存储库
知道如何解决这个问题吗?
只需使用switch -relocate命令更改svn存储库的地址即可.
$ svn switch --relocate file:/// tmp/repos file:/// tmp/newlocation.
在你的情况下,它将是$ svn switch --relocate http:// mach1:81/ http:// mach2:81 /
使用Tortoise SVN提供的"relocate"选项.只需右键单击最上面检出的文件夹,选择重定位,然后输入新URL.