在用PyCharm提交代码到Github时忽然报出如下错误,以前尚未的,不知道我又踩了什么奇怪的坑。。。
pycharm上传GitHub时报错:
push failed: unable to access 'https://github.com/Mbabysbreath/Python_Test/': SSL certificate problem: unable to get local issuer certificategit
提示SSL证书错误。这个错误并不重要是系统证书的问题,系统判断到这个行为会形成不良影响,因此进行了阻止,只要设置跳过SSL证书验证就能够了github
打开GitBash,命令行中输入:ide
git config --global http.sslVerify false
https://blog.csdn.net/u012679583/article/details/54089331.net