yum安装git-v2.x版本

在bower项目的时候显示如下报错

访问提示中的网址报如下信息

Please upgrade your git client.
GitHub.com no longer supports git over dumb-http: https://github.com/blog/809-git-dumb-http-transport-to-be-turned-off-in-90-days

就是说需要升级git,我的操作系统是centos6.5,git版本是再带的V1.7.1(使用git --version 查看)

首先卸载旧版本git

yum remove git  
直接使用这个命令下载的还是1.7.1版本的。不使用源码进行编译是因为依赖太多,总会缺东西。
yum install git

可以使用 WANDisco's CentOS repository去安装 Git 2.x.

  1. Install WANDisco repo package:

yum install http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm
  1. Install the latest version of Git 2.x:
yum install git

如果再bower时出现SSL connect error,执行

git config --global http.sslversion tlsv1

猜你喜欢

转载自blog.csdn.net/t3369/article/details/79562853
今日推荐