gpt4 book ai didi

linux - "Unable to find remote helper for ' https '"在 git 克隆期间

转载 作者:IT老高 更新时间:2023-10-28 12:19:02 27 4
gpt4 key购买 nike

我无法克隆 HTTPS 存储库。我可以很好地克隆 SSH 存储库,但不能克隆 HTTPS 存储库。我无法测试 GIT 协议(protocol),因为我在公司防火墙后面。

这就是我想要做的:

$ git clone https://github.com/nvie/gitflow.git
Cloning into gitflow...
fatal: Unable to find remote helper for 'https'

到目前为止,我已经尝试了以下方法(基于 Google 搜索)

  • 通过 apt-get
  • 清除和安装 Git
  • 通过 apt-get
  • 为 Git 安装 build-deps
  • 安装 curl 开发库
  • 安装 expat 库
  • 下载 Git 源代码并使用以下命令构建:
    • ./configure --prefix=/usr --with-curl --with-expat
    • 还尝试将配置指向 curl 二进制文件 (./configure --prefix=/usr --with-curl=/usr/bin/curl)

我已经尝试了所有可以在互联网上找到的东西,但都没有运气。谁能帮帮我?

Git 版本 = 1.7.6.4

操作系统 = Ubuntu 11.04

最佳答案

编译 git 时似乎没有安装 (lib)curl-devel 可能会导致这种情况。

如果你安装 (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

这在 Centos 6.3 上对我有用。

如果你没有yum,你可以在这里下载源码到curl-devel:


如果您运行的是 Ubuntu:

sudo apt-get install libcurl4-openssl-dev 

关于linux - "Unable to find remote helper for ' https '"在 git 克隆期间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8329485/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com