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

当你编译安装git时因为没有安装(lib)curl-devel所以导致git clone 和 git push 都会出现这个错误

如果你安装了(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的源代码文件:

  在ubuntu 14.04上亲测可用

引用文章地址: http://stackoverflow.com/questions/8329485/unable-to-find-remote-helper-for-https-during-git-clone#answer-13018777

原文地址:https://www.cnblogs.com/zhiyingzhou/p/6103735.html