Solucionado (ver solução)
Solucionado
(ver solução)
5
respostas

fatal: Unable to find remote helper for 'https'

git clone https://github.com/jcfonsecagit/repositorio.git Cloning into 'repositorio'... fatal: Unable to find remote helper for 'https'

Qual o motivo do erro e de funcionar somente como abaixo?

git clone git://github.com/jcfonsecagit/repositorio.git Cloning into 'repositorio'... remote: Counting objects: 18, done. remote: Total 18 (delta 0), reused 0 (delta 0), pack-reused 18 Receiving objects: 100% (18/18), done. Resolving deltas: 100% (4/4), done.

5 respostas

Não resolveu fazendo o abaixo:

sudo apt-get install libcurl4-openssl-dev

A instalação do git foi pelo download:

https://www.kernel.org/pub/software/scm/git/git-2.14.2.tar.gz

tar zxf git-2.14.2.tar.gz

cd git-2.14.2

./configure

make

make install

git --version retorna - 2.14.2

Olá gustavo,

Imagino que você esteja utilizando Linux, correto?

Quando eu fiz o curso eu tive o mesmo problema com o git ao tentar instala-lo efetuando o download do pacote.

Para resolver eu fiz o seguinte, desinstalei o git usando o comando abaixo:

dpkg -r nome_pacote

E instalei o git via apt-get, com o seguinte comando:

apt-get install git

Após isso o git voltou a funcionar normalmente.

Bom dia Denis! Obrigado pelo comentário. Vou checar o que passou e posto aqui depois o resultado. Estou usando o Linux Mint. Obrigado!

solução!

Resolvido!!!

instalado pacote libcurl4-openssl-dev - install openssl libraries for curl (to read https protocol)

Feita nova instalação a partir do fonte.

wget https://www.kernel.org/pub/software/scm/git/git-XXXX.tar.gz
tar xvf git-XXXX.tar.gz
cd git-XXXX
 ./configure
make -j8
sudo make install