LoginSignup
22
23

More than 5 years have passed since last update.

[自分用] git clone https:/~ でfatal: Unable to find remote helper for 'https'が出たとき

Last updated at Posted at 2014-09-01

gitのインストール時に(lib)curl-devel ライブラリを読みこめていないことが
問題らしい。必要ライブラリをインストールし、gitの再インストールが必要

gitの削除

$sudo yum remove git

必要パッケージのインストール
参照:http://git-scm.com/book/ja/%E4%BD%BF%E3%81%84%E5%A7%8B%E3%82%81%E3%82%8B-Git%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB

$ sudo yum install curl-devel expat-devel gettext-devel   openssl-devel zlib-devel

ソースのダウンロード
参照: https://code.google.com/p/git-core/downloads/list

wget https://git-core.googlecode.com/files/git-1.8.5.3.tar.gz

インストール

$cd 解凍ディレクトリ
$./configure && make && make install
22
23
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
23