.com/dee0912/p/5815267.html
在 linux 下搭建 git 伺服器
環境:
伺服器 centos6.6 + git(version 1.7.1)
客戶端 windows10 + git(version 2.8.4.windows.1)
① 安裝 git
linux 做為伺服器端系統,windows 作為客戶端系統,分別安裝 git
伺服器端:
安裝完後,檢視 git 版本
[root@localhost ~]# git –version
git version 1.7.1
客戶端:
安裝完之後,可以使用 git bash 作為命令列客戶端。
安裝完之後,檢視 git 版本
$ git –version
git version 2.8.4.windows.1
② 伺服器端建立 git 使用者,用來管理 git 服務,並為 git 使用者設定密碼
[root@localhost home]# id git
id: git:無此使用者
[root@localhost home]# useradd git
[root@localhost home]# passwd git
③ 伺服器端建立 git 倉庫
設定 /home/data/git/gittest.git 為 git 倉庫
然後把 git 倉庫的 owner 修改為 git
[root@localhost home]# mkdir -p data/git/gittest.git
[root@localhost home]# git init –bare data/git/gittest.git
initialized empty git repository in /home/data/git/gittest.git/
[root@localhost home]# cd data/git/
[root@localhost git]# chown -r git:git gittest.git/
④ 客戶端 clone 遠端倉庫
進入 git bash 命令列客戶端,建立專案位址(設定在 d:/wamp64/www/gittest_gitbash)並進入:
複製**
dee@lenovo-pc mingw64 /d
$ cd wamp64/www
dee@lenovo-pc mingw64 /d/wamp64/www
$ mkdir gittest_gitbash
dee@lenovo-pc mingw64 /d/wamp64/www
$ cd gittest_gitbash
dee@lenovo-pc mingw64 /d/wamp64/www/gittest_gitbash
$ 複製**
然後從 linux git 伺服器上 clone 專案:
1 $ git clone [email protected]:/home/data/gittest.git
the authenticity of host 『192.168.56.101 (192.168.56.101)』 can』t be established.
rsa key fingerprint is sha256:ve6wv/sca059eqouozbfozdfmmh3b259nigfmvdadqq.
are you sure you want to continue connecting (yes/no)?
選擇 yes:
warning: permanently added 『192.168.56.101』 (rsa) to the list of known hosts.
此時 c:\users\使用者名稱.ssh 下會多出乙個檔案 known_hosts,以後在這台電腦上再次連線目標 git 伺服器時不會再提示上面的語句。
後面提示要輸入密碼,可以採用 ssh 公鑰來進行驗證。
⑤ 客戶端建立 ssh 公鑰和私鑰
$ ssh-keygen -t rsa -c 「[email protected]」
此時 c:\users\使用者名稱.ssh 下會多出兩個檔案 id_rsa 和 id_rsa.pub
id_rsa 是私鑰
id_rsa.pub 是公鑰
rsaauthentication yes
pubkeyauthentication yes
authorizedkeysfile .ssh/authorized_keys
儲存並重啟 sshd 服務:
[root@localhost ssh]# /etc/rc.d/init.d/sshd restart
由 authorizedkeysfile 得知公鑰的存放路徑是 .ssh/authorized_keys,實際上是 $home/.ssh/authorized_keys,由於管理 git 服務的使用者是 git,所以實際存放公鑰的路徑是 /home/git/.ssh/authorized_keys
在 /home/git/ 下建立目錄 .ssh
[root@localhost git]# pwd
/home/git
[root@localhost git]# mkdir .ssh
[root@localhost git]# ls -a
. .. .bash_logout .bash_profile .bashrc .gnome2 .mozilla .ssh
然後把 .ssh 資料夾的 owner 修改為 git
複製**
[root@localhost git]# chown -r git:git .ssh
[root@localhost git]# ll -a
總用量 32
drwx——. 5 git git 4096 8月 28 20:04 .
drwxr-xr-x. 8 root root 4096 8月 28 19:32 ..
-rw-r–r–. 1 git git 18 10月 16 2014 .bash_logout
-rw-r–r–. 1 git git 176 10月 16 2014 .bash_profile
-rw-r–r–. 1 git git 124 10月 16 2014 .bashrc
drwxr-xr-x. 2 git git 4096 11月 12 2010 .gnome2
drwxr-xr-x. 4 git git 4096 5月 8 12:22 .mozilla
drwxr-xr-x. 2 git git 4096 8月 28 20:08 .ssh
複製**
⑦ 將客戶端公鑰匯入伺服器端 /home/git/.ssh/authorized_keys 檔案
回到 git bash 下,匯入檔案:
$ ssh [email protected] 『cat >> .ssh/authorized_keys』 < ~/.ssh/id_rsa.pub
需要輸入伺服器端 git 使用者的密碼
回到伺服器端,檢視 .ssh 下是否存在 authorized_keys 檔案:
[root@localhost git]# cd .ssh
[root@localhost .ssh]# ll
總用量 4
-rw-rw-r–. 1 git git 398 8月 28 20:08 authorized_keys
可以檢視一下是否是客戶端生成的公鑰。
重要:修改 .ssh 目錄的許可權為 700
修改 .ssh/authorized_keys 檔案的許可權為 600
[root@localhost git]# chmod 700 .ssh
[root@localhost git]# cd .ssh
[root@localhost .ssh]# chmod 600 authorized_keys
⑧ 客戶端再次 clone 遠端倉庫
$ git clone [email protected]:/home/data/git/gittest.git
檢視客戶端專案目錄:
專案已經 clone 了。
也可以使用 tortoisegit 客戶端來管理專案:
clone
⑨ 禁止 git 使用者 ssh 登入伺服器
之前在伺服器端建立的 git 使用者不允許 ssh 登入伺服器
編輯 /etc/passwd
找到:git:x:502:504::/home/git:/bin/bash
修改為git:x:502:504::/home/git:/bin/git-shell
此時 git 使用者可以正常通過 ssh 使用 git,但無法通過 ssh 登入系統。
git 在Linux下搭建git伺服器
1 安裝git sudo apt get install git2 建立git使用者,用來執行git服務 sudo adduser git3 禁用shell登入 選擇git倉庫位址 vim etc passd 找到類似下面的一行 git x 1002 1002 home git bin bash 修...
詳解在Linux下搭建Git伺服器
眾所周知,版本系統在開發環境中是必不可少的,但是我們可以把 免費的託管到github上,如果我們不原意公開專案的源 公司又不想付費使用,那麼我們可以自己搭建一xwhff臺git伺服器,可以用gitosis來管理公鑰,還是比較方便的。搭建環境 伺服器 centos6.6 git version 1.8...
linux下搭建git伺服器
在linux下搭建git倉庫還是很方便的。新增使用者 user add git 設定密碼 passwd git 安全起見可以將git使用者的預設shell設定為git shell,以防git使用者登陸系統 vim etc passwd 將 bin bash git x 1000 1000 home ...