您好,登錄后才能下訂單哦!
這篇文章主要介紹“Git服務(wù)的搭建步驟”,在日常操作中,相信很多人在Git服務(wù)的搭建步驟問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Git服務(wù)的搭建步驟”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
1.安裝依賴庫(kù)和編譯工具
#yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel -y
#yum install gcc perl-ExtUtils-MakeMaker -y
2.選一個(gè)目錄,用來(lái)放下載下來(lái)的安裝包,這里將安裝包放在 /usr/local/src 目錄里,到官網(wǎng)找一個(gè)新版穩(wěn)定的源碼包下載到 /usr/local/src 文件夾里
官網(wǎng)
https://git-scm.com/book/zh/v1
https://mirrors.edge.kernel.org/pub/software/scm/git/
#wget https://www.kernel.org/pub/software/scm/git/git-2.10.0.tar.gz
解壓
#tar -zvxf git-2.10.0.tar.gz
#cd git-2.10.0
#make all prefix=/usr/local/git
#make install prefix=/usr/local/git
3.配置環(huán)境變量
將原來(lái)的 PATH 指向目錄修改為現(xiàn)在的目錄
#echo 'export PATH=$PATH:/usr/local/git/bin' >> /etc/bashrc
生效環(huán)境變量
#source /etc/bashrc
此時(shí)我們能查看 git 版本號(hào),說(shuō)明我們已經(jīng)安裝成功了。
#git --version
4.創(chuàng)建 git 賬號(hào)密碼
創(chuàng)建 git 賬號(hào)
#useradd -m gituser
然后為這個(gè)賬號(hào)設(shè)置密碼
#passwd gituser
5.初始化 git 倉(cāng)庫(kù)并配置用戶權(quán)限
創(chuàng)建 git 倉(cāng)庫(kù)并初始化
我們創(chuàng)建 /data/repositories 目錄用于存放 git 倉(cāng)庫(kù)
#mkdir -p /data/repositories
創(chuàng)建好后,初始化這個(gè)倉(cāng)庫(kù)
#cd /data/repositories/ && git init --bare test.git
配置用戶權(quán)限
給 git 倉(cāng)庫(kù)目錄設(shè)置用戶和用戶組并設(shè)置權(quán)限
#chown -R gituser:gituser /data/repositories
#chmod 755 /data/repositories
查找 git-shell 所在目錄
, 編輯 /etc/passwd 文件,將最后一行關(guān)于 gituser 的登錄 shell 配置改為 git-shell 的目錄
如下
#vi /etc/passwd
#gituser:x:500:500::/home/gituser:/usr/local/git/bin/git-shell
6.使用搭建好的 Git 服務(wù)
克隆 test repo 到本地
cd ~ && git clone gituser@123.207.27.137:/data/repositories/test.git
Git 服務(wù)器搭建完成, 從此以后你可以方便地將你的本地代碼提交到 Git 服務(wù)器托管了
到此,關(guān)于“Git服務(wù)的搭建步驟”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。