1. git clone 时出现: OpenSSL SSL_read: Connection was reset, errno 10054
解决方法: 1) . 去掉 ssl 校验,执行 :git config --global http.sslVerify "false"
2). 再次执行: git clone即可。
2. git clone时出现:error: 7462 bytes of body are still expected
解决方法: 1). 修改git 的缓存, 执行: git config --global http.postBuffer 1024M
2). 再次执行: git clone即可。