git提示:Unable to find remote helper for 'https'
因为 /usr/libexec/git-core/ 路径没在 PATH 环境变量中
解决办法
1. 将所有的URL中的http、https 改成git
2. 将 /usr/libexec/git-core 纳入 PATH,至少在使用 git 之前,设置一下PATH
PATH=$PATH:/usr/libexec/git-core
或直接在 /etc/profile 中修改
另一种情况
如果上述方法未能解决问题,那可能是另一种情况
CentOS使用命令
yum install curl-devel
Ubuntu使用命令
apt-get install libcurl4-openssl-dev
然后重新编译安装git
来源:https://stackoverflow.com/questions/8329485/unable-to-find-remote-helper-for-https-during-git-clone