Gitをソースコードからインストールした時のエラー

Gitがyumでインストールしたら、1.7だったので1.8にバージョンアップしました。 
yum remove git-core

$ sudo yum install openssl097a.x86_64 openssl-perl.x86_64 curl-devel
$ wget https://git-core.googlecode.com/files/git-1.8.5.3.tar.gz
$ tar zxf git-1.8.5.3.tar.gz
$ cd git-1.8.5.3 && ./configure && make && sudo make install

openssl1097a.x86_64とopenssl-perl.x86_64は以下のエラーが出たためインストールを行った 
$ git clone https://github.com/oomatomo/perl-test.git
Cloning into 'perl-test'
fatal: Unable to find remote helper for 'https'





以上でうまくいきました。