git 小问题小结

110 阅读1分钟

1. git pull / git clone时

git pull
fatal: unable access 'https://...git/':SSl certificate problem: unbale to get local issuer certificate

原因:这是由于git默认开启了SSL验证,关闭即可

解决:

git config --global http.sslVerify false