目前cenots版本为7.2,自带git@1.8.3,为了体验新功能,将git进行更新git
首先将原git进行删除:github
# yum remove git
安装依赖:bash
# yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel
下载最新git:curl
# wget https://github.com/git/git/archive/v2.20.0.tar.gz
编译并安装:url
# tar -zxf v2.20.0.tar.gz # cd git-2.20.0 # sudo make prefix=/usr/local all # sudo make prefix=/usr/local install
添加环境变量:code
# echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc # source /etc/bashrc
查看gitssl
# git --version git version 2.20.0
参考资料: https://git-scm.com/book/en/v...