我想在我的根服务器上使用svn,所以我执行了以下步骤:
我的repo现在位于/root/opt/svn/myproject
我想通过http访问。 所以这是我的subversion.conf
<Location /opt/svn> DAV svn SVNParentPath /opt/svn SVNListParentPath On # Limit write permission to list of valid users. # Require SSL connection for password protection. # SSLRequireSSL AuthType Basic # Message to give to the committer AuthName "Write access requires a password" # File listing users with write (commit) access AuthUserFile /srv/svn/user_access/svn_passwdfile Require valid-user </Location>
我按照这个教程: http : //www.korecky.org/? p = 168&langswitch_lang= en
我怎样才能访问我的回购? 什么是正确的url?
你读过关于存储库URL的文档吗?
如果您希望通过腻子进行连接,那么您可能需要使用类似的url。
svn+ssh://full.domain.name/full/path/to/repository
除非你的仓库实际上是/my.Project ,否则我怀疑你的path是错误的。