官方教程,在 Linux/Unix 系統中,經過工具在中安裝 git
,這種方式比較簡單,便於升級卸載工具,網上搜到的全是源碼編譯安裝。linux
下面介紹在 CentOS 系統中,經過 yum 來安裝 gitgit
Red Hat Enterprise Linux, Oracle Linux, CentOS, Scientific Linux, et al.
RHEL and derivatives typically ship older versions of git. You can download a tarball and build from source, or use a 3rd-party repository such as the IUS Community Project to obtain a more recent version of git.
官方文檔說 git 在 RHEL
和衍生產品一般都會發布舊版本的 git
,咱們須要源碼編譯安裝,或者使用第三方存儲庫(如IUS社區項目)。github
如今咱們經過,IUS社區下載 ius-release.rpm 文件進行安裝centos
# 注意下載不一樣的版本,本機 CentOS 7 wget https://centos7.iuscommunity.org/ius-release.rpm # 安裝rpm文件 rpm -ivh ius-release.rpm
查看可安裝的git安裝包bash
repoquery --whatprovides git # git-0:1.8.3.1-13.el7.x86_64 # git2u-0:2.16.5-1.ius.centos7.x86_64 # git2u-0:2.16.2-1.ius.centos7.x86_64 # git2u-0:2.16.4-1.ius.centos7.x86_64 # git-0:1.8.3.1-14.el7_5.x86_64
卸載我本機的 1.8.3
的 git
,安裝 2.16.5
的 git
ide
# 卸載老的版本 yum remove git # 安裝新的版本 yum install git2u
原文收錄在這裏工具