执行 git pull 时报了如下错误:
fatal: unable to access 'https://xxx.git/': SSL certificate problem: certificate has expired
也就是SSL证书过期了,关掉SSL验证就好
解决方案:执行如下指令
git config --global http.sslVerify false
然后再执行 git pull 拉取代码就不会出错了
执行 git pull 时报了如下错误:
fatal: unable to access 'https://xxx.git/': SSL certificate problem: certificate has expired
也就是SSL证书过期了,关掉SSL验证就好
解决方案:执行如下指令
git config --global http.sslVerify false
然后再执行 git pull 拉取代码就不会出错了