CentOS Git 服务器搭建 2016-09-14 Git Git 安装git1yum -y install git 创建用户与授权12345678# 找到 git_shell whereis git_shell/usr/bin/git-shell # 创建 git 用户adduser -d /var/git -s /usr/bin/git-shell git_*passwd git_* git 使用1234567cd /var/git# 创建git仓库git init --bare ***.git# 授权chmod -R 777 ***.git