该问题是由 git configure 配置时没有设定 --with-curl --with-expat 造成。
参考:git INSTALL文件:
“libcurl” library is used by git-http-fetch and git-fetch. You might also want the “curl” executable for debugging purposes. If you do not use http:// or https:// repositories, you do not have to have them (use NO_CURL).
“expat” library; git-http-push uses it for remote lock management over DAV. Similar to “curl” above, this is optional (with NO_EXPAT).
CentOS的话,使用yum安装curl开发相关库后:
$ yum install libcurl-devel
重新配置编译git即可。
参考:
http://stackoverflow.com/questions/8329485/git-clone-fatal-unable-to-find-remote-helper-for-https
http://rcmdnk.github.io/blog/2013/07/27/computer-cygwin-git/

本文介绍了解决Git配置中未包含curl和expat的问题,这通常会导致使用HTTP或HTTPS仓库时出现问题。文章提供了如何通过安装必要的库来解决此问题的方法,并给出具体的CentOS环境下安装命令。
2317

被折叠的 条评论
为什么被折叠?



