git编译安装完成之后fatal: Unable to find remote helper for 'https'
git configure 配置时没有设定 --with-curl --with-expat 造成删除原安装目录和编译目录,重新解压缩:
1
2
3
4
5
tar -zxf git-2.9.2.tar.gz -C /tmp/
cd /tmp/git-2.9.2/
./configure --prefix=/usr/local/git --with-curl --with-expat
make
make install
页:
[1]