问题:
git pull报错fatal: unable to access 'https://gitlab.rd.favnapi.com/iOS/CMBB.git/': error:1404B410:SSL routines:ST_CONNECT:sslv3 alert handshake failure
admin@admindeMac-mini CMBB % git pull
fatal: unable to access 'https://gitlab.rd.favnapi.com/iOS/CMBB.git/': error:1404B410:SSL routines:ST_CONNECT:sslv3 alert handshake failure
解决:
输入git config --global http.sslVerify false命令解除ssl验证
admin@admindeMac-mini CMBB % git config --global http.sslVerify false
admin@admindeMac-mini CMBB % git pull
Already up to date.