RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 send-pack: unexpected

git push時に発生。

発生したエラー内容:

RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 send-pack: unexpected disconnect while reading sideband packet Total 158 (delta 9), reused 0 (delta 0), pack-reused 0 the remote end hung up unexpectedly

解消方法: push時のバッファサイズの上限を変更。

# バッファサイズを500MBに変更
git config --global http.postBuffer 524288000

Resource