# git で https プロトコルで clone できない場合 {{tag: git}} ## git clone https git で https プロトコルで clone しようとした場合に、`fatal: Unable to find remote helper for 'https'` というエラーに出くわすことがある。 > \# git clone https://github.com/some/repos > Cloning into 'repos'... > fatal: Unable to find remote helper for 'https' これは、https を利用するためのライブラリが不足している。 git をソースからビルドした場合は、以下のライブラリを追加して、リビルドが必要。 # yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel ### see also * [[http://git-scm.com/book/ja/v2/%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#%E3%82%BD%E3%83%BC%E3%82%B9%E3%81%8B%E3%82%89%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB ソースからのインストール]]