问题
用yum install git 下载后查看版本
git --version
显示的版本太低,自己去github下载比较新的版本
解决
- https://github.com/git/git/tags 查看最新的版本,并且复制tar.gz下载链接
- wget +你复制的链接 我的例子:wget https://github.com/git/git/archive/v2.21.0.tar.gz
- 解压 tar -zxvf v2.21.0.tar.gz
- 进入解压目录 cd git-2.21.0/
$ make configure
$ ./configure --prefix=/usr
$ make
$ sudomakeinstall
此处可以参考https://github.com/git/git/blob/master/INSTALL
或者https://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Git
版权归原作者 zero_one_Machel 所有, 如有侵权,请联系我们删除。