git clone 出现fatal: Unable to find remote helper for 'https'的解决办法
问题的原因是因为编译时系统缺少curl
组件,根据系统安装:
- ubuntu:
apt-get install curl libcurl3 libcurl4-openssl-dev
- centos:
yum install curl-devel
然后重新编译安装git
:
./configure --prefix=/usr/local/git
make && make install
评论已关闭