yum install git 默认安装的是比较低的版本,有些选项只有在新版本的 git 才支持,比如 git tag --sort='committerdate'。
下载 Git 源代码
地址:https://github.com/git/git/releases
手动安装
下面是手动安装 Git v2.29.2 的整个流程
# 安装依赖库sudo yum install -y make gcc \openssl-devel \expat-devel \curl-devel \gettext-devel \tcl-devel# 下载 Git 源码wget https://github.com/git/git/archive/v2.29.2.tar.gztar zxf v2.29.2.tar.gzcd git-2.29.2make prefix=/usrsudo make prefix=/usr install
一键安装
curl -sSL https://gist.githubusercontent.com/k8scat/eda787a71d8f327134a0b5508569e451/raw/22f1921a4bd99bd228b0249d9ad4da331d6f03f3/install_git.sh | bash -s 2.29.2
