備忘録として。
エラー内容: packet_write_wait: Broken pipe
リモートリポジトリのサイズがクライアント側の受け入れ容量を超えてしまい、git clone
時に以下のエラーが出る。
$ git clone ssh://~ sample
Cloning into 'sample'...
remote: Counting objects: 1556, done.
packet_write_wait: Connection to ~ port ~: Broken pipe
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack faile
解決
gitクライアント側でバッファの容量をとりあえず20MBまで増やしてあげる。
$ git config --global http.postBuffer 20M