Clone code from GitHub website — unable to find remote helper

https://github.com/ARM-software/arm-trusted-firmware.git

Error

fatal: Unable to find remote helper for ‘https’

Method 1:

(1) git clone –recursive git://github.com/ceph/ceph.git
(2) Then run the following command (replacing https, with git).

git clonegit://github.com/ARM-software/arm-trusted-firmware.git

Method 2 (Recommended):

It looks like not having (lib)curl-devel installed when you install git can cause this.

Solution:

$ yum installcurl-devel
$ # cd to wherever the source for git is
$ cd /home/lion/git-source-code
$ ./configure
$ make
$ make install

Similar Posts: