-
問題:
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: the remote end hung up unexpectedly
原因:使用https協議推送,並且存在文件過大。
-
單個文件小於100M解決方法(網上找的試了可行記錄一下哈哈哈)
git config --global http.postBuffer 1572864000
git config --global https.postBuffer 1572864000
然后再次git push即可。有warning但還是可以推送上去的。
-
1572864000是1500M,哈哈哈應該不用那么大,結果測試單個文件超過100M,還是需要git-lfs的支持。。。
git-lfs下載地址:https://git-lfs.github.com