centos7搭建git服务器(多用户版)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7搭建git服务器(多用户版)相关的知识,希望对你有一定的参考价值。

  1. 创建仓库并分享到组:
    git  init  --shared=group  test
  2. 创建组:
    groupadd  git
  3. 切换项目所属组:
    chgrp  -R  git  test
  4. 创建用户1:
    useradd  test1  -g  git
    passwd  test1
  5. 创建用户2:
    useradd  test2  -g  git
    passwd  test2
  6. 修改配置文件:
    vim test/.git/config
    添加
    denyCurrentBranch = ignore

    技术分享图片

以上是关于centos7搭建git服务器(多用户版)的主要内容,如果未能解决你的问题,请参考以下文章

centos7下git服务器端搭建

轻量GIT服务器Gogs搭建教程(梭哈版)

搭建Git服务器及备份服务器

Git GitLab服务器社区版安装与使用

centOS7.2下 搭建gitlab使用git为团队管理代码

自建git服务器连接Pycharm系列二:在centos7上搭建git服务器