# Git error: errno 10054 ###### tags: `GIT` `Git error` ## 問題 error: RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 10054> ![](https://i.imgur.com/AuKvRS5.png) >原因:檔案過大,需先設置本地端容量 ## 解決 ### Step 1 - 設定不檢查ssl `git config --globle http.sslVerify "false"` ### Step 2 - 設置文件大小上限 `git config --global http.postBuffer 524288000`