[git] fatal : The remote end hung up unexpectedly
error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 32
fatal: the remote end hung up unexpectedly
音声合成データをgitにプッシュする際に上記のエラーが発生しました.->GitのBufferサイズを増やす
なぜなら、検索するとアップロードされたファイルが大きすぎるからです.
そこでGitのpost bufferサイズを増やします.
git config --global http.postBuffer 1048576000
そしてpushを試しましたが、問題は解決しませんでした...->git filter-repoの使用
git filter-repoと呼ばれる別の方法も見つけた.
まずgit filter-repoをダウンロードします.
brew install git-filter-repo
次にpush limitを増やしますgit filter-repo --strip-blobs-bigger-than 10M
そしてpushが正常に働いているのが見えます!!Reference
この問題について([git] fatal : The remote end hung up unexpectedly), 我々は、より多くの情報をここで見つけました https://velog.io/@offsujin/git-fatal-The-remote-end-hung-up-unexpectedlyテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol