깃에 있는 프로젝트를 내 컴퓨터로 복사하려할때, (git clone uri 를 했을때 )
git push origin master Counting objects: 57, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (54/54), done.
Writing objects: 100% (47/47), 2.91 MiB | 204.00 KiB/s, done.
Total 57(delta 0), reused 0 (delta 0)
error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
뭐 이런 깃 결과창에 섞인 에러다.
fatal: The remote end hung up unexpectedly 에러가 났다.
버퍼 사이즈가 너무 작아 에러가 난것으로 보인다.
아래의 명령어를 실행하여 git config의 http.postBuffer 사이즈를 늘려주면 해결할 수 있다.
git config http.postBuffer 104857600
참조:
https://www.jamescoyle.net/how-to/894-gitlab-error-fatal-the-remote-end-hung-up-unexpectedly
'Git (깃) > 깃 git ' 카테고리의 다른 글
[git] 깃 merge 에러 / Pull is not possible because you have unmerged files (1) | 2021.04.07 |
---|---|
git / github / ssh-key/ 프로젝트 파일 가져오기 (2) | 2020.06.19 |
[2] 쿠팡 api 프로젝트 / 만료된 secret key / gitignore로 해결하기 (0) | 2020.02.16 |
git github 프로젝트 private로 변경하기. (0) | 2020.02.10 |
git에 있는 프로젝트 가져오기. (0) | 2020.02.10 |
댓글