views:

303

answers:

1

I have a SVN repository with a user in passwd:

[users]
Mark = 8d9"'8V2;

Now i would like to restrict this user privilages (permissions) only to commit and update this directories:

/CurrentProject/Printer
/CurrentProject/Scanner
/CurrentProject/Documentation

How to acomplish this?

+2  A: 

Check out Path-Based Authorization in the SVN Book.

In svnserve.conf, specify a authz-db file. And in that file say something like the following.

[/]
Tomas = rw

[/CurrentProject]
Mark = rw
Lachlan Roche