Setup SVN repository subfolder specific write permission
Posted
by
Hai Lang
on Server Fault
See other posts from Server Fault
or by Hai Lang
Published on 2012-07-02T08:55:37Z
Indexed on
2012/07/02
9:17 UTC
Read the original article
Hit count: 255
svn
I need to setup a SVN repository which the devgroup should have full privilege to read and write except for two sub folders /1 and /2.
For /1 and /2, four users should have write permission and all other users should only have read permission.
I put the following into the configuration file, but people in devgroup still have write permission in /1 and /2.
Any help would be highly appreciated.
[project:/]
@devgroup = rw
[project:/1]
@devgroup = r
user1 = rw
user2 = rw
user3 = rw
user4 = rw
[project:/2]
@devgroup = r
user1 = rw
user2 = rw
user3 = rw
user4 = rw
© Server Fault or respective owner