解決Git提交代碼報錯
(OpenSSL SSL_read: Connection was reset, errno 10054)
fatal: unable to access 'https://github.com/xxx.git/': OpenSSL SSL_read: Connection was aborted, errno 10053
可能原因:
首先,造成這個錯誤很有可能是網絡不穩定,連接超時導致的,
如果再次嘗試后依然報錯,可以執行下面的命令。
解決方法:
- 雙擊打開:git-cmd.exe
git config --global --unset http.proxy
git config --global --unset https.proxy
OR
更改網絡認證設置
git config --global http.sslVerify "false"
OR
增加緩沖
git config http.postBuffer 524288000