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

来源:互联网 发布:人机交互与人工智能 编辑:程序博客网 时间:2024/05/16 00:42

安装完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

Linux中Subversion配置实例 http://www.linuxidc.com/Linux/2012-02/53109.htm

CentOS 6.2 SVN搭建 (YUM安装)http://www.linuxidc.com/Linux/2013-10/91903.htm

Apache+SVN搭建SVN服务器 http://www.linuxidc.com/Linux/2013-03/81379.htm

Windows下SVN服务器搭建和使用 + 客户端重新设置密码 http://www.linuxidc.com/Linux/2013-05/85189p5.htm

Ubuntu Server 12.04 安装 SVN 并迁移 Virtual SVN数据http://www.linuxidc.com/Linux/2013-05/84695.htm

Ubuntu Server搭建svn服务以及迁移方法 http://www.linuxidc.com/Linux/2013-05/84693.htm

借助网盘搭建SVN服务器 http://www.linuxidc.com/Linux/2013-10/91271.htm


本文转自  http://www.linuxidc.com/Linux/2014-09/106683.htm

0 0
原创粉丝点击