當你編譯安裝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