Git出现fatal: Unable to find remote helper for 'https'

Posted nkwy2012

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git出现fatal: Unable to find remote helper for 'https'相关的知识,希望对你有一定的参考价值。

使用Git远程获取代码

 

[plain] view plain copy
 
 print?
  1. git clone https://github.com/twlkyao/findfile.git  

 

    出现“fatal: Unable to find remote helper for ‘https‘”(这是因为git环境在重装后没有安装完全,需要重新安装),可暂时使用git代替https,使用如下命令:

 

[plain] view plain copy
 
 print?
  1. git clone git://github.com/twlkyao/findfile.git  

 

    这里将使用代码安装进行介绍:

    切换到代码目录:

 

[plain] view plain copy
 
 print?
  1. cd /opt/git-1.8.1.2/  

    然后按照INSTALL中的说明设置安装前缀(一般使用root安装):

 

 

[plain] view plain copy
 
 print?
  1. $ make prefix=/usr all doc info ;# as yourself  
  2. # make prefix=/usr install install-doc install-html install-info ;# as root  

   然后执行make install

 

 

[plain] view plain copy
 
 print?
    1. # make install 

以上是关于Git出现fatal: Unable to find remote helper for 'https'的主要内容,如果未能解决你的问题,请参考以下文章

git提交代码出现错误fatal: Unable to create '项目路径/.git/index.lock': File exists.

使用 git clone 的时候出现 fatal: Unable to find remote helper for 'https' 解决办法

(转)git clone出现 fatal: unable to access 'https://github.com/...'的解决办法

ubuntu 14.04 git clone 出现 fatal: Unable to find remote helper for 'https'

git clone的时候出现出现 fatal: unable to access 'https://github.com/...':OpenSSL SSL_read: Connecti

使用Git客户端克隆项目时出现fatal: unable to access 错误的经历