首页 > 其他 > 详细

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

时间:2015-01-07 20:32:18      阅读:248      评论:0      收藏:0      [点我收藏+]

转载地址:http://www.linuxidc.com/Linux/2014-09/106683.htm

安装完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
---------------------------------------------------
一定要注意以下三个参数所在的行,前面不能有空格.

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

原文:http://www.cnblogs.com/csshaw/p/4209176.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!