在服务器搭建git仓库的时候,发现使用git pull命令出现如下错误:
fatal: Unable to find remote helper for 'http'
百度了一下,原来是安装git的时候不完整。重新编译安装解决问题。
./configure --with-curl --with-expat
make && make install
我是root操作的,所以没有权限限制。主要是 --with-curl 和 --with-expat 选项加上重新安装就好了。git版本太旧的话也会有问题,所以我卸载了服务器自带的1.7.1版本git,源码安装了2.12.2版本。
原文链接:https://www.f2er.com/git/419926.html