Git push Error
error: RPC failed; HTTP 400 curl 56 The requested URL returned error: 400
git push를 하는데 갑자기 에러가 났다
$ git push origin main
Enumerating objects: 73, done.
Counting objects: 100% (73/73), done.
Delta compression using up to 10 threads.
Compressing objects: 100% (50/50), done.
error: RPC failed; HTTP 400 curl 56 The requested URL returned error: 400
fatal: The remote end hung up unexpectedly
Writing objects: 100% (53/53), 9.84 MiB | 9.50 MiB/s, done.
Total 53 (delta 30), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date
git push 할때 용량 제한이 걸려 있어서 생긴 문제이며 데이터 양이 많거나 큰 파일이 포함된 경우, Git 원격 저장소에 푸시할 데이터가 많거나 큰 파일이 포함되었을 때 발생할 수 있습니다.
이를 해결하려면 Git의 버퍼 크기를 늘리면 됩니다.
아래 명령어로 버퍼의 용량을 늘려 줍니다.
git config --global http.postBuffer 524288000
그리고 다시 git push 해줍니다.
git push origin main