I had the same problem. I tried installing git from the source and it works.
Install these packages first:
curl
autoconf
zlib-devel
openssl-devel
perl
cpio
expat-devel
gettext-devel
Getting git scm source code:
git -latest.tar.gz
Compiling git scm from source
tar xzvf git-latest.tar.gz
cd git-{date}
autoconf
./configure --with-curl=/usr/local
make
make install
source
share