在用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