方法1 :
先修改设置解除ssl验证。
git config --global http.sslverify "false"
然后重新clone
方法2:
如果提示filename too long,说明文件名或路径太长27797bb
git config --global core.longpaths true
方法3:
如果是上传push提示的话。可能是文件过大
修改为500m
git config http.postbuffer 524288000
方法4:网速慢导致的the remote end hung up unexpectedly 问题
git config --global ssh.lowspeedlimit 0
git config --global ssh.lowspeedtime 999999