从存储库中检出代码时,SVN错误E175002 [英] SVN Error E175002 while checking out code from repository

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

问题描述

尝试从在线存储库中检出代码时,出现以下错误:

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

E175002:"/repos/xxx/!svn/vcc/default"的报告

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

我正在尝试从远程计算机上签出代码.

I am trying to checkout the code from a remote computer.

推荐答案

经过长时间的研究,我终于找到了一个解决方案,该解决方案是将 allowed from all 放入 httpd上的svn配置中.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天全站免登陆