"Unable to Find Remote Helper For 'Https'" During Git Clone

Unable to find remote helper for 'https' during git clone

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

If you install (lib)curl-devel, and then rebuild/install git, this should solve the problem:

$ yum install curl-devel
$ # cd to wherever the source for git is
$ cd /usr/local/src/git-1.7.9
$ ./configure
$ make
$ make install

This worked for me on Centos 6.3.

If you don't have yum, you can download the source to curl-devel here:

  • http://curl.se/dlwiz/?type=devel

If you are running Ubuntu instead:

sudo apt-get install libcurl4-openssl-dev 

Github CLI - Unable to find remote helper for 'https'

This is all set. After installing the library, I just needed to reboot my machine.

Why Git sometimes give me error like fatal: Unable to find remote helper for 'https'

Try and make sure to reset (for testing) your path in a CMD session (again, just for testing, in that one CMD session):

set GH=C:\path\to\git2.12.2.2
set PATH=C:\windows\system32;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%

Then try again to push.

If this is not working, Try setting up and register an ssh key and, as a
workaround, use an ssh url:

git remote set-url origin git@bitbucket.org:username/repo.git

git push error fatal: Unable to find remote helper for 'https'

After much searching, the answer is you need git version 1.7.7

Can't update RVM - "fatal: Unable to find remote helper for 'http'"

Jenkins: Unable to find remote helper for 'https'

Looks like you installed GIT from source and you are missing curl-devel.

You should install (lib)curl-devel

For more dependency needed if you install GIT from source, can be found here:

https://git-scm.com/book/en/v2/Getting-Started-Installing-Git



Related Topics



Leave a reply



Submit