解决SVN的一个错误配置

check out的时候, SVN报错:
svn: Not authorized to open root of edit operation 

原因:
svnserve.conf 文件里, 有个配置没设置好:

[general]
### These options control access to the repository for unauthenticated
### and authenticated users.  Valid values are "write", "read",
### and "none".  The sample settings below are the defaults.
anon-access = none
auth-access = write

你可能感兴趣的:(SVN,Access)