Adding a user to subversion, granting access to a subfolder
Let us say you added a new user (called newuser) – and want to grant her access to your subfolder myproject/source
You would modify the Authz file – by adding the following line:
[myproject/source/] newuser = rw
Now, newuser has read-write access to that subfolder only. Which means that the PATH (repository URL) that this user must type should look like:
https://mydomain/svn/myproject/source
Any other subversion URL will give an access denied error.
Leave a Reply