1.安裝git 2.創建用戶與授權 3.git 使用 ...
1.安裝git
sudo yum -y install git
2.創建用戶與授權
# 找到 git_shell whereis git_shell /usr/bin/git-shell # 創建 git 用戶 adduser -d /var/git -s /usr/bin/git-shell git_* passwd git_*
3.git 使用
cd /var/git # 創建git倉庫 git init --bare ***.git # 授權 chmod -R 777 ***.git