报错: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传输文件大小的上限git