我按照本教程在我的vps上创建了一个svn存储库:https://support.godaddy.com/help/article/12342/how-to-install-and-use-svn-on-centos-6
现在我想将存储库签出到我的电脑。我安装了TortoiseSVN,但我不确定要输入什么URL。我试过svn://xxx.xxx.xx.xxx/my-test-repos/哪个不起作用:
Unable to connect to a repository at URL
'svn://xxx.xxx.xx.xxx/my-test-repos/'
Can't connect to host 'xxx.xxx.xx.xxx'
这是正确的网址吗?
或者我是否需要以某种方式访问存储库?
答案 0 :(得分:0)
我看过你的教程。
实际上,本教程没有解释如何构建远程存储库(例如在另一台服务器上)。它允许您只创建一个本地存储库来跟踪您的版本。
由于您尝试访问计算机上的存储库,并且根据教程,网址应为file://$HOME/.svnrepos/my-test-repos/trunk
。
当您使用svn://
或http://
协议访问svn存储库时,这意味着它位于anoter computer/server
上。在这里,您的svn repos是本地的,因此它应该是:file://pathtoyourlocalrepository/