運行環(huán)境
Centos 7
第一步 安裝Git
yum install git
在服務(wù)器上安裝git
第二步 創(chuàng)建專門的Git賬號
adduser git
創(chuàng)建一個名為git的服務(wù)器賬號
passwd git
為git賬號設(shè)置密碼
第三步 創(chuàng)建Git倉庫
創(chuàng)建
cd /home/git/
進(jìn)入/home/git/目錄
git init --bare sample.git
創(chuàng)建一個為sample.git的倉庫
chown -R git:git sample.git
更改擁有者用戶
防止Shell登陸
vi /etc/passwd
打開/etc/passwd文件
將
git:x:1001:1001::/home/git:/bin/bash
修改為
git:x:1001:1001::/home/git:/usr/bin/git-shell
第四步 公鑰導(dǎo)入
將公鑰放在 ‘/home/git/.ssh/authorized_keys’ 文件之中。
第五步 CloneGit倉庫
git clone git@yourserver:/home/git/xxx.git