我有当前设置的svnserve:
svnserve.conf的:
anon-access = read #I also tried anon-access = none or comment this line
auth-access = write
password-db = passwd
authz-db = authz
Run Code Online (Sandbox Code Playgroud)
AuthZ的:
[/]
foo = rw
[/Subdir]
foo = rw
bar = rw
Run Code Online (Sandbox Code Playgroud)
如果用户'bar'尝试checkout/Subdir文件夹,则会收到错误:"未授权打开编辑操作的根".用户foo可以正确完成.
我能用这个麻烦做些什么?
svn ×1