简体   繁体   中英

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

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?

Just use git-http instead.

opkg remove git
opkg install git-http

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM