一、问题
# git clone https://github.com/ansible/ansible.git
Cloning into 'ansible'...
fatal: Unable to find remote helper for 'https'
解决方案
安装依赖
yum install curl-devel
进入目录重新编译
cd git-2.2.1
./configure
make
make install
完成后,依然有报错
# git clone https://github.com/ansible/ansible.git
Cloning into 'ansible'...
fatal: unable to access 'https://github.com/ansible/ansible.git/': SSL connect error
yum update nss
测试,恢复正常。
git clone https://github.com/ansible/ansible.git
