OpenWRT git clone fatal: Unable to find remote helper for 'http'

送分小仙女□ 提交于 2019-12-21 11:04:25

问题


I'm trying to install LINC-Switch to OpenWRT and stuck on following problem:

git clone https://github.com/FlowForwarding/LINC-Switch.git

and get an error:

git fatal: Unable to find remote helper for 'https'

According to this link I've compiled git package without NO_CURL flag in Makefile. I even recompile dist trying to solve the problem.

Any ideas?


回答1:


Just use git-http instead.

opkg remove git
opkg install git-http



回答2:


Next to using git-http, as Nemo Alex suggests, you should also have the ca-bundle installed:

opkg update
opkg remove git
opkg install git-http
opkg install ca-bundle


来源:https://stackoverflow.com/questions/22506989/openwrt-git-clone-fatal-unable-to-find-remote-helper-for-http

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!