以下内容是我在使用git时遇到的一些小问题和解决方法,不全,只作为记录用。
Start
问题:OpenSSL SSL_read: Connection was aborted, , errno 10053
原因:Git默认限制推送的大小,运行命令更改限制大小即可
方法:git config --global http.postBuffer 524288000
问题:Failed to connect to github.com port 443:connection timed out
原因:设置的代理不可联通(绝大多数)或无法链接至github(github,无解)
方法:
git config --global --unset http.proxy
git config --global --unset https.proxy