linux 新建svn版本库

作者: 吾心橙 | 来源:发表于2018-07-31 15:10 被阅读33次
  1. 进入svn 版本库
  2. 创建svn 版本库
    svnadmin create faceidentity
  3. 进入新建的版本库库目录
    cd faceidentit
  4. 进入版本库配置目录
    cd conf
  5. 配置 访问权限
    vim authz
    添加一下内容:
    owner = yucihai,zhangpan,liufuhai
    [faceidentity:/]
    @owner = rw


    image.png
  1. 配置用户密码
    vim passwd
    添加内容如下:
    yucihai = 123456
    zhangpan = 123456
    liufuhai = 123456


    image.png
  2. 配置服务启动文件
    vim svnserve.conf
    填充内容如下:
    anon-access = none
    auth-access = write

password-db = passwd

authz-db = authz

realm = faceidentity

image.png

7 停止svn 服务
killall svnserve

8 启动svn服务
svnserve -d -r /var/svn


image.png

相关文章

网友评论

    本文标题:linux 新建svn版本库

    本文链接:https://www.haomeiwen.com/subject/wbchvftx.html