svn 配置与管理

1、创建版本库 svnadmin create /data/www/svn/shop 2、配置版本库 /data/www/svn/shop/conf #svnserve.conf [general] anon-access = none none-access = none auth-access = write password-db = passwd authz-db = authz #passwd [users] test:123456 #authz [groups] shopuser = ligangming [shop:/] @shopuser = rw * = 3、启动 svnserve -d -r /data/www/svn 4、hosts设置 192.168.0.12 svn.dev.test.com 客户端通过 svn co svn://svn.dev.test.com/shop 即可检出版本库内容

 

 

在版本库下创建以下目录进行检出开发与发布:

branches
tags
trunk
clients

你可能感兴趣的:(SVN,出版)