參考資料:http://blog.feehi.com/linux/124.htmlhtml
1.搭配環境linux
2.安裝gitgit
3.建立git用戶bash
4.建立裸庫服務器
5.配置公鑰匙ssh
6.客戶端clone代碼庫測試
一、搭配環境3d
服務器:linux Centos-64htm
虛擬機:VMWare 10.0blog
服務器git版本:1.71
客戶端git版本:Git bash
測試客戶端:W7-64
二、安裝git
首先經過git --version查看是否已經安裝git,未裝則:
yum -y install git
三、建立git用戶
建立git用戶:
adduser git
切換到git用戶:
su git
四、建立裸庫
在/home/git目錄下建立pro.git裸庫:
git init --bare pro.git
五、配置公匙
首先在客戶端打開bash查詢是否存在公匙:
若不存在公匙,則生成:
ssh-keygen -t rsa
查看密匙:
cat id_rsa.pub
下面咱們複製id_rsa.pub裏的公鑰到服務器的authorized_keys文件中:
首先建文件夾:
再配置/home/git/.ssh/autoirized_keys
六、客戶端clone代碼庫
warning: LF will be replaced by CRLF in text.txt解決辦法:
git commit: