[Git] git push 하는데 HTTP 400 error??
2024-10-21 21:53:05
문제 상황원격 레포지토리에 .gif 파일 하나를 push 하니까 갑자기 아래와 같은 에러메시지가 떳다.Push failed Total 8 (delta 2), reused 0 (delta 0), pack-reused 0 RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 send-pack: unexpected disconnect while reading sideband packet the remote end hung up unexpectedly 이 오류는 Git에서 푸시를 시도할 때 발생하는 문제로, HTTP 400 에러는 잘못된 요청을 의미한다.찾아보니 레포지토리 url 연결이 잘못되어있거나 push 할 파일의 용량이 클 때 발생할 수 ..