在一诺香港云服务器内安装git,如果用yum进行安装,会发现下载的不是最新版本
将云服务器内git版本升级到最新的方法如下:
首先将旧版本的git卸载 yum remove -y git
获取最新版本的安装包
wget --no-check-certificate https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.9.5.tar.xz
解压获得的安装包 tar -vxf git-2.9.5.tar.xz
进行编译安装
cd git-2.9.5
make git all
Make git install
Source /etc/profile
重新加载环境变量之后 查看git版本,可以看到已经安装好最新版本的git