1. ホーム

git fatal: 'https' 用のリモートヘルパーが見つかりません。

2022-03-12 23:58:25
<パス

今日、プラグインがないためにgitリポジトリをpullするときにこの問題にぶつかり、国を検索してもわからず、スタックを見に行ったらこれを見て解決しました。

方法1: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

参考記事 https://stackoverflow.com/questions/8329485/unable-to-find-remote-helper-for-https-during-git-clone

方法2

yum -y install git-http

2番目の方法は、1番目の方法をいじった後、問題が解決されたので、テストしませんでした。最初の方法は、より遅く、gitを再コンパイルする必要があります。

方法3

httpsの代わりにgitを使う。これも初めて見た。

git clone --recursive git://github.com/ceph/ceph.git