0


git 源码下载安装最新版本

问题

用yum install git 下载后查看版本
git --version

显示的版本太低,自己去github下载比较新的版本

解决

  1. https://github.com/git/git/tags 查看最新的版本,并且复制tar.gz下载链接在这里插入图片描述
  2. wget +你复制的链接 我的例子:wget https://github.com/git/git/archive/v2.21.0.tar.gz
  3. 解压 tar -zxvf v2.21.0.tar.gz
  4. 进入解压目录 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

标签: git github

本文转载自: https://blog.csdn.net/weixin_44554979/article/details/128505609
版权归原作者 zero_one_Machel 所有, 如有侵权,请联系我们删除。

“git 源码下载安装最新版本”的评论:

还没有评论