执行git clone https://github.com/gavinL93/oa
时,出现错误:
Cloning into 'oa'...
fatal: unable to access 'https://github.com/gavinL93/oa/': SSL certificate problem: unable to get local issuer certificate
开始以为是SSH秘钥的问题,重新生成后,依然提示这个错误。网上查了之后发现是https访问的的证书问题,在Windows下的git窗口里使用命令直接去掉ssl的验证:
git config --global http.sslVerify false
此时可以正常clone项目到本地了: