2

一年前我在我的 RaspberryPI 上安装了 svnserver...

由于我最近更新了我的 RaspberryPI,sudo apt-get update然后sudo apt-get upgrade我无法再对我的存储库进行任何操作。当我尝试时checkout,它显示以下错误update

Error: Unable to connect to a repository at URL http://myurl.com/svn/my-repo-name   
Error: Unexpected HTTP status 405 'Method Not Allowed' on '/svn/my-repo-name'  
Error: Additional errors:
Error: The URI does not contain the name of a repository.

我检查了我的 svn 配置文件,但更新后它们没有改变。
有人可以帮助我吗?我不知道发生了什么:S

谢谢指教

4

2 回答 2

1

自上次 apache 升级以来,ParentPath 似乎存在问题。

解决了它注释掉以下行:

#SVNListParentPath On

最后重新启动你的 Apache。

来源:SVN 405 错误:无法获取资源信息

于 2014-09-11T07:30:32.470 回答
1

我遇到了类似的问题,因为我试图从以下路径签出存储库:

http://192.168.1.70/xyz/abc _

而正确的做法是:

svn ://192.168.1.70/xyz/abc

于 2016-04-07T11:30:11.367 回答