11

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?

wds
  • 31,873
  • 11
  • 59
  • 84
Yasha Bubnov
  • 886
  • 1
  • 9
  • 8
  • possible duplicate of [git clone: fatal: Unable to find remote helper for 'https'](http://stackoverflow.com/questions/8329485/git-clone-fatal-unable-to-find-remote-helper-for-https) – Azd325 Mar 19 '14 at 13:19
  • Did you tried this url too? git@github.com:FlowForwarding/LINC-Switch.git – Azd325 Mar 19 '14 at 13:21
  • I'm, but https://github.com/FlowForwarding/LINC-Switch/blob/master/rebar.config resolves dependencies via http – Yasha Bubnov Mar 19 '14 at 13:24

2 Answers2

40

Just use git-http instead.

opkg remove git
opkg install git-http
Nemo Alex
  • 473
  • 4
  • 5
5

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
Maarten Wolzak
  • 2,651
  • 1
  • 19
  • 18