安装完SVN服务器,添加完用户权限后,准备将本地的项目add到服务器上时,报"D:\svn\conf\svnserve.conf:12: Option expected
".
网上查找,需要做以下配置:
svnserve.conf文件修改前:
-------------------------------------------------------
--------------------------------------------------
svnserve.conf文件修改后:
------------------------------------------------------
---------------------------------------------------
一定要注意以下三个参数所在的行,前面不能有空格.
".
网上查找,需要做以下配置:
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 = read
# auth-access = write
......
# password-db = passwd--------------------------------------------------
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 = read
auth-access = write
......
password-db = passwd---------------------------------------------------
一定要注意以下三个参数所在的行,前面不能有空格.
anon-access = read
auth-access = write
password-db = passwd
本文详细介绍了在配置SVN服务器时遇到的错误D:svnconfsvnserve.conf:12:Optionexpected的解决方法,通过修改svnserve.conf文件中的anon-access、auth-access和password-db参数,成功解决了问题。
2044

被折叠的 条评论
为什么被折叠?



