SVN Error E175002 while checking out code from repository

前端 未结 8 1523
时光取名叫无心
时光取名叫无心 2021-02-18 22:50

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

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

I a

相关标签:
8条回答
  • 2021-02-18 23:47

    I have changed the windows password and then I have tried checking out the code and I end up with the above unknown host error.

    I have restarted eclipse and restarted virtual machine where my eclipse has been set up.

    Now I am able to checkout. Hope this helps.

    0 讨论(0)
  • 2021-02-18 23:52

    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>
    

    The svn checkout is working fine now

    The above are for apache 2.2

    if you use apache 2.4

    <Directory /repos>
        ...
        require all granted
        ...
        </Directory>
    
    0 讨论(0)
提交回复
热议问题