SVN error“access to '/svn/myservice/!svn/act/d99e498e-9a8d-374c-a3e4-fde21198bfa2' forbidden”

后端 未结 9 1578
情话喂你
情话喂你 2020-12-02 20:52

I cannot commit but I can update.

When I attempt to commit I get the following error:

access to \'/svn/myservice/!svn/act/d99e498e-9a8d-374

9条回答
  •  暖寄归人
    2020-12-02 21:26

    Update is a READ / PULL, Commit is a WRITE / PUSH.

    I was using Linux with Apache and come to find out it was with the Repo breakdown in file used for the AuthzSVNAccessFile /x/x/x/x/users-access-file

    FILE CONTENTS of /x/x/x/x/users-access-file

    [groups]
    DEV =  user1,user2
    
    [/]
    * = r
    
    [blah_blah:/]
    @DEV = rw
    

    My problem was I 1st had this: [blah_blah], when I changed it to [blah_blah:/] That fixed MY problem. Simple Typo, causes Huge headaches tracking it down.

提交回复
热议问题