1. 程式人生 > 其它 >Linux 安裝 Git

Linux 安裝 Git

技術標籤:linuxgit

官網地址https://git-scm.com/download/linux 當中有詳細介紹各個版本的Linux如何安裝Git,這裡我用的是CentOS

方法一:

自動安裝

yum install git

方法二:

手動安裝

安裝步驟:獲取原始碼——》解壓——》編譯——》安裝——》配置環境變數——》重新整理環境變數——》測試

1.獲取原始碼

GitHub地址https://github.com/git/git/releases

官網下載地址:https://mirrors.edge.kernel.org/pub/software/scm/git/

2.解壓

tar -zxvf git-2.20.0.tar.gz 

3.編譯

make prefix=/usr/local/git all

4.安裝

make prefix=/usr/local/git install

5.配置環境變數

vim /etc/profile

新增 export PATH=$PATH:/usr/local/git/bin

然後 Esc+ :wq! 退出vim編輯模式

6.重新整理環境變數

source /etc/profile

7.測試

git --version