红联Linux门户
Linux帮助

git clone出现fatal:Unable to find remote helper for 'https'

发布时间:2016-11-27 10:05:35来源:linux网站作者:周志颖
当你编译安装git时因为没有安装(lib)curl-devel所以导致git clone 和 git push 都会出现fatal: Unable to find remote helper for 'https'这个错误。
 
如果你安装了(lib)curl-devel,然后重新编译安装git就没有这个错误了:
$ yum install curl-devel
$ # cd to wherever the source for git is
$ cd /usr/local/src/git-1.7.9 
$ ./configure
$ make
$ make install
 
在ubuntu上没有yum,所以可以到这里下载curl-devel的源代码文件:
http://curl.haxx.se/dlwiz/?type=devel
 
在ubuntu 14.04上亲测可用。
 
引用文章地址: 
git clone出现fatal:Unable to find remote helper for 'https'
 
本文永久更新地址:http://www.linuxdiyf.com/linux/26362.html