SVN仓库创建、配置与启动

安装

yum -y install subversion

创建

cd /mnt/project/svn
svnadmin create app_demo

配置

cd /mnt/project/svn/app_demo/conf

编辑svnserve.conf

[general]
anon-access = none
auth-access = write

password-db = passwd

authz-db = authz

编辑authz

[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe
developer = some_author

[/]
@developer = rw

编辑passwd

[users]

some_author = this_is_passwd

启动

svnserve -d -r /mnt/project/svn
Author: thinkwei

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注