SVN access denied when comparing revisions

前端 未结 2 1634
暖寄归人
暖寄归人 2021-02-10 04:58

We\'re using an SVN repository. I am getting the error below when we try to compare a local unmodified file with the latest revision of the file in the repository. In other word

相关标签:
2条回答
  • 2021-02-10 05:26

    You probably don't have enough rights to read every file changed in those revisions. Hence, Subversion considers the revisions "unreadable" for you. This is explained in the authz_policy.txt document.

    0 讨论(0)
  • 2021-02-10 05:32

    You have bad configuration (or Subversion has a bug:)).

    Anyway it can be fixed by changing in "svnserve.conf" file the line:

    [general]
    anon-access = none
    

    Another solution to change only "authz" file the line:

    [/]
    * = r
    

    That solution is given anonymous reads your repository that is not good. If you need to use only authorization repository than use the first solution. (was tested with svn 1.6.17, but think it does not depend from version)

    0 讨论(0)
提交回复
热议问题