1.报错git Unable to access ‘https://github.com/xxxx/xxxx.git/’:OpenSSL SSL_read:Connection was reset 或 Failed to connect to github.com port 443: Connection timed out 1.1解决方案法1,换网络。 法2,修改git配置的方案,具体命令是 git config --global http.sslVerify false 2.报错error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed 2.1解决方案下载文件太大,需扩充限制。 git init git config http.postBuffer 524288000 |