当你编译安装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上亲测可用。
引用文章地址: