SVN branch level authorization permissions

We have several branches of development and we want to limit the fixation of a particular branch to only a certain group of developers.

Is it possible to restrict branch level access in SVN?

+5
source share
3 answers

Yes it is. You must configure the svn configuration file named "authz" located in the folder or directory of the repository. You can specify specific permissions by doing the following

[// branches branch-name]

harry = rw

sally = r

Hope this helps.

+12
source

You can use commit commit to check paths, so only certain users can transfer certain files along certain paths.

0

All Articles