gpt4 book ai didi

linux - 致命的无法找到 https 的远程助手

转载 作者:太空宇宙 更新时间:2023-11-04 12:18:37 25 4
gpt4 key购买 nike

当在 Red Hat Enterprise Linux 服务器上尝试使用 git 克隆存储库时:

git clone https://github.com/user/repo.git

我收到错误输出:

fatal: Unable to find remote helper for 'https'

我在尝试使用 Vundlevim 安装软件包时注意到错误。当我查看日志时,我发现是 git 导致了错误。单独运行时不存在该问题:

sudo git clone https://github.com/user/repo.git

... 并运行:

/usr/bin/git clone https://github.com/user/repo.git

...也很好用。因为在这种情况下我通过 vim 运行 git 我希望它只使用 git 命令

我已经尝试卸载所有 yum 安装的 git 相关包。我也尝试过 this 中的方法Stackoverflow 的回答没有任何结果。我尝试使用 this 从源代码安装最新的 git教程。

最佳答案

在一个工作日的 2/3 试图找出问题所在后,我手动删除了我能找到的所有与 git 相关的文件和目录。然后我简单地重新安装了 git

sudo yum install git

现在一切正常。

所以尝试做

find /usr/ -name 'git*' -type d

找到与git相关的目录,然后删除所有这些目录。在此之后,您进行新的搜索并将其通过管道传输到 less 中以处理可能的大输出,

find /usr/ -name 'git*' | less

记下 exec 文件并将其删除。我在/usr/local/bin 中的位置。在这之后你像上面一样用 yum 重新安装 git。

关于linux - 致命的无法找到 https 的远程助手,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46687933/

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