Git服務搭建教程

1.安裝依賴庫和編譯工具git

#yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel -yshell

yum install gcc perl-ExtUtils-MakeMaker -y

2.選一個目錄,用來放下載下來的安裝包,這裏將安裝包放在 /usr/local/src 目錄裏,到官網找一個新版穩定的源碼包下載到 /usr/local/src 文件夾裏bash

官網
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.gzcurl

解壓
#tar -zvxf git-2.10.0.tar.gzide

#cd git-2.10.0工具

#make all prefix=/usr/local/giturl

#make install prefix=/usr/local/gitssl

3.配置環境變量get

將原來的 PATH 指向目錄修改成如今的目錄

#echo 'export PATH=$PATH:/usr/local/git/bin' >> /etc/bashrc

生效環境變量
#source /etc/bashrc

此時咱們能查看 git 版本號,說明咱們已經安裝成功了。
#git --version

4.建立 git 帳號密碼

建立 git 帳號
#useradd -m gituser

而後爲這個帳號設置密碼
#passwd gituser

5.初始化 git 倉庫並配置用戶權限

建立 git 倉庫並初始化

咱們建立 /data/repositories 目錄用於存放 git 倉庫

#mkdir -p /data/repositories

建立好後,初始化這個倉庫
#cd /data/repositories/ && git init --bare test.git

配置用戶權限
給 git 倉庫目錄設置用戶和用戶組並設置權限
#chown -R gituser:gituser /data/repositories

#chmod 755 /data/repositories

查找 git-shell 所在目錄
, 編輯 /etc/passwd 文件,將最後一行關於 gituser 的登陸 shell 配置改成 git-shell 的目錄
以下
#vi /etc/passwd
#gituser:x:500:500::/home/gituser:/usr/local/git/bin/git-shell

6.使用搭建好的 Git 服務
克隆 test repo 到本地
cd ~ && git clone gituser@123.207.27.137:/data/repositories/test.git

Git 服務器搭建完成, 今後之後你能夠方便地將你的本地代碼提交到 Git 服務器託管了

相關文章
相關標籤/搜索