Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

git

openwrt

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?

like image 920
Yasha Bubnov Avatar asked Mar 19 '14 13:03

Yasha Bubnov


2 Answers

Just use git-http instead.

opkg remove git
opkg install git-http
like image 91
Nemo Alex Avatar answered Oct 19 '22 17:10

Nemo Alex


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
like image 24
Maarten Wolzak Avatar answered Oct 19 '22 18:10

Maarten Wolzak