OpenWRT git clone fatal: Unable to find remote hel

2019-05-01 07:40发布

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?

标签: git openwrt
2条回答
乱世女痞
2楼-- · 2019-05-01 08:16

Just use git-http instead.

opkg remove git
opkg install git-http
查看更多
够拽才男人
3楼-- · 2019-05-01 08:25

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
查看更多
登录 后发表回答