您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何搭建一個(gè)Git Server ,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
平常都是在用 GitHub
、GitLab
、Gitee
等服務(wù),那我們?nèi)绾巫约捍罱ㄒ粋€(gè) Git Server
,這里我們搭建一個(gè)簡單的 Git Server
adduser \ --system \ --shell /bin/bash \ --gecos 'Git Version Control' \ --group \ --disabled-password \ --home /home/git \ git
/home# su git /home# cd git /home/git# mkdir .ssh && chmod 700 .ssh /home/git# touch .ssh/authorized_keys && chmod 600 .ssh/authorized_keys
/home/git# mkdir code_repository
注意: 這里需要使用 git 用戶進(jìn)行操作
/home/git# cd code_repository/ /home/git/code_repository# mkdir abc.git /home/git/code_repository# cd abc.git/ /home/git/code_repository/abc.git# git init --bare
注意: 這里需要使用 git 用戶進(jìn)行操作
將我們自己本地的公鑰文件加入 /home/git/.ssh/authorized_keys
中
$ mkdir abc $ cd abc $ git init $ touch README.md $ git add . $ git commit -m "first add reademe.md" $ git remote add origin ssh://git@xxx.xx.xx.xx:/home/git/code_repository/abc.git $ git push -u origin master
注意: 這里在本機(jī)運(yùn)行的,不是在服務(wù)器上
這種方式創(chuàng)建的倉庫,并沒有設(shè)置任何權(quán)限,只要在 authorized_keys
的公鑰用戶就可以對(duì)倉庫進(jìn)行讀寫操作。
關(guān)于如何搭建一個(gè)Git Server 就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。