为啥要升级呢
在使用jenkins连接gitlab会报错:
error: The requested URL returned error: 401 Unauthorized while accessing
检测版本
我的版本是 git版本:1.7.1
git --version
升级步骤
- 卸载git
yum remove git
- 编译安装指定的git版本
cd /usr/local/src
wget 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 prefix=/usr/local/git all
make prefix=/usr/local/git install
- 如果是非root用户使用,需加入到环境变量
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/profile
source /etc/profile
- 最后测试一下是否升级成功
0> git --version
git version 2.9.5