您的位置:首页 > 运维架构

SVN添加文件时的错误处理:...\conf\svnserve.conf:12: Option expected

2012-03-02 07:26 441 查看
安装完SVN服务器,添加完用户权限后,准备将本地的项目add到服务器上时,报"C:\Documents and Settings\Subversion Repository\conf\svnserve.conf:12: Option expected

".

网上查找,需要做以下配置:

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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐