Linux > さくらレンタルサーバにGITをインストール

ソースのダウンロード


$ wget https://git-core.googlecode.com/files/git-1.9.0.tar.gz
$ tar xzf git-1.9.0.tar.gz


インストール


$ cd git-1.9.0
$ ./configure --with-curl=/usr/local/bin --prefix=$HOME --enable-pthreads=-pthread
$ gmake all
$ gmake install
  • with-curl=/usr/local/bin
 fatal: Unable to find remote helper for 'https' 対策
  • enable-pthreads=-pthread
 undefined reference to `pthread_create' 対策

とここまでやっても、だめ。何が悪い?
最終更新:2015年09月03日 20:40