SVN错误E175002 [英] SVN Error E175002

查看:2531
本文介绍了SVN错误E175002的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在尝试在线结算从存储库code我得到了以下错误

While trying to checkout code from a repository online I got the following Error

E175002: REPORT of '/repos/xxx/!svn/vcc/default'

我试图从远程计算机检出code

I am trying to checkout the code from a remote computer

推荐答案

长期的研究后,我终于找到了解决的解决办法是把所有允许在SVN在配置的httpd.conf

After long research, I finally found a solution the solution was to put allow from all in the svn configuration on httpd.conf:

<Directory /repos>
...
allow from all
...
</Directory>

的svn签现在工作正常。

The svn checkout is working fine now

以上是为Apache 2.2

The above are for apache 2.2

如果你使用Apache 2.4

if you use apache 2.4

<Directory /repos>
    ...
    require all granted
    ...
    </Directory>

这篇关于SVN错误E175002的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆