报错:Git error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
git出现这个报错是因为git push或者git pull的文件太大,超出了git默认的文件传输上限。
解决方法:
git config --global http.postBuffer 524288000
或
git config --global http.postBuffer 1048576000
根据自己的需要设置git传输文件大小的上限