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'

时间: 2024-07-31 14:27:03

Git出现fatal: Unable to find remote helper for 'https'的相关文章

记一次git fatal: Unable to find remote helper for 'https'问题的解决

登陆到远程linux服务器上,使用git, clone的时候报“fatal: Unable to find remote helper for 'https'”错,没管,绕过,使用git clone git://....协议download下来项目. 但是到提交完要push回服务器的时候,必须得用https,搜了一下问题,是系统中没有curl,都是要装curl的,比如: yum install curl-devel 或者apt-get等 但是问题来了,远程服务器上没有sudo到root的权限怎么

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

当你编译安装git时因为没有安装(lib)curl-devel所以导致git clone 和 git push 都会出现这个错误 如果你安装了(lib)curl-devel,然后重新编译安装git就没有这个错误了: $ yum install curl-devel $ # cd to wherever the source for git is $ cd /usr/local/src/git-1.7.9 $ ./configure $ make $ make install 在ubuntu上没有

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

安装 libcurl 和 curl yum install libcurl-devel yum install curl-devel 重编译git客户端 使用 git clone 的时候出现 fatal: Unable to find remote helper for 'https' 解决办法 原文地址:https://www.cnblogs.com/yunfeioliver/p/10259647.html

fatal: Unable to find remote helper for 'https'

如果出现这样clone报错的,可能是未安装curl-devel. 依次执行安装命令,并重新编译git yum install curl-devel cd /home/tools/git-2.9.5/ #git-2.9.5.tar.gz解压目录 ./configure make make install 再次尝试一下clone.不行则重启一下 reboot fatal: Unable to find remote helper for 'https' 原文地址:https://www.cnblog

Unable to find remote helper for 'https'

出现这个报错,说明git目前的状态是正常的,要么没装好,要么自己解决压缩安装导致没有权限 第三次情况是,使用yum install git 重新安装后,仍然报错,是因为环境变量中GIT_HOM配置的仍然是有问题的老http://blog.csdn.net/yanwuhuan/article/details/7412370 解决git的这个错误:fatal: Unable to find remote helper for 'https' 系统是centos5 搜了一下,要装curl的,可是俺已经

git 错误: Unable to find remote helper for ‘https‘

这个问题之前在 <编译OpenWrt过程> 博文里提到过.当前没有彻底地解决,只是简单地将所有的URL中的 http, https 改成了 git. 今天知道问题的原因了,是因为 /usr/libexec/git-core/ 路径没在 PATH 环境变量中. 我们查看一下: $ ls /usr/libexec/git-core/ git                    git-http-backend         git-receive-pack git-add           

编译OpenWRT,解决“fatal: Unable to find remote helper”

编译报错: make[3]: Entering directory `/home/hevake_lcj/Workspace/OpenWRT/trunk/package/network/config/netifd' mkdir -p /home/hevake_lcj/Workspace/OpenWRT/trunk/dl echo "Checking out files from the git repository..."; mkdir -p /home/hevake_lcj/Works

git 解决fatal: Unable to create ‘x/.git/index.lock‘’

今天在分支上切换到主分支发生fatal: Unable to create 'D:/xxxxxx/.git/index.lock': File exists.的错误,在这里记录下备查. 解决方法是: 执行rm -f操作就可以切换到主分支了. 具体命令是:rm -f D:/xxxxxx/.git/index.lock

解决fatal: unable to connect to github.com问题

错误信息:bower error status code of git: 128fatal: unable to connect to github.com:github.com[0: 你的IP]: errno=Operation timed out原因:需要用https才能读到数据解决方法:输入命令git config --global url."https://".insteadOf git://