Sometimes when you try to install git on CentOS it doesn’t continue and output this error
Requires: libcurl.so.3()(64bit)
First try to install libcurl by :
$ yum install libcurl libcurl-devel
Then try installing git again.
If this doesn’t work, try installing git with this command:
yum install git-all.noarch
which doesn’t depend on architectures.
Source