Git 报错解决方案:OpenSSL SSL_read: Connection was aborted, errno 10053

在使用android studio时,发现报错

OpenSSL SSL_read: Connection was aborted, errno 10053

Failed to connect to github.com port 443 after 21096 ms: Timed out

输入这两行代码即可

git config --global http.postBuffer 524288000
git config --global http.sslVerify "false"

你可能感兴趣的:(github,git)