SVN 并重命名其运行的服务器
我正在运行 VisualSVN 作为我的 SVN 服务器并使用 TortoiseSVN 作为客户端。 我刚刚将服务器从 mach1 重命名为 mach2,现在无法使用 SVN,因为它正在 http:// 查找存储库mach1:81/ 而不是新名称 http://mach2:81/
知道如何解决这个问题?
I'm running VisualSVN as my SVN server and using TortoiseSVN as the client. I've just renamed the server from mach1 to mach2 and now can't use SVN because it's looking for the repositories at http://mach1:81/ instead of the new name http://mach2:81/
Any idea how to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用 switch --relocate 命令更改 svn 存储库的地址即可。
$svn switch --relocate file:///tmp/repos file:///tmp/newlocation。
在你的情况下,它将是 $svn switch --relocate http://mach1:81/ http://mach2:81/
Just change the address of the svn repository using switch --relocate command.
$svn switch --relocate file:///tmp/repos file:///tmp/newlocation.
In your case it would be $svn switch --relocate http://mach1:81/ http://mach2:81/
第一个谷歌点击:
svn sw --relocate svn://example1.com:22/name http://example2.com:24/ edc
First google hit:
svn sw --relocate svn://example1.com:22/name http://example2.com:24/edc
使用 Tortoise SVN 提供的“重新定位”选项。 只需右键单击最上面的签出文件夹,选择“重新定位”,然后输入新的 URL。
Use the "relocate" option provided by Tortoise SVN. Just right click on the upper-most checked out folder, select relocate, and then enter the new URL.