하... 이런 답답한 오류 메시지
error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: CANCEL (err 8)
fatal: the remote end hung up unexpectedly
검색해보니 아래의 명령으로 http 버전을 변경하란다.
git config --global http.version HTTP/1.1
변경했다. 그리고 다시 push 했으나.. 다른 오류가 나타난다.
error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 32
fatal: the remote end hung up unexpectedly
이런 제길... 다른 방법
git config --global http.postBuffer 524288000
이번엔 이 명령으로 버퍼 늘리기. 그러고 나니 이제 알게 된 사실
파일 용량이 너무 커서 그렇단다. 먼 뻘짓을 한건지..
결국 아래 처럼 커밋 파일 삭제로 해결
$ git rm --cached <file_name>
rm '<file_name>'
$ git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
deleted: <file_name>
$ git commit -m 'Delete file!'
...
$ echo '<file_name>' >> .gitignore
'개발자의 정보 > 개발관련 상식' 카테고리의 다른 글
최고의 개발자 경험을 구축하기 위한 5가지 팁 (번역) (0) | 2023.02.19 |
---|---|
GitHub 다계정 사용중 권한 오류 or 접속 불가시 (0) | 2023.02.11 |
애플 사파리를 그렇게 밀고 싶니..?? (0) | 2022.02.16 |
[Chrome] 크롬 DNS 캐시 확인 및 삭제 방법 (0) | 2021.12.28 |
크롬 캐시 삭제하는 방법 - 강력 새로 고침 (1) | 2021.08.20 |
image file format 변환 (ico 포함) (0) | 2021.07.26 |
개발자의 직급과 역할에 관한 이야기 (0) | 2021.07.02 |
Kotlin for Server Side (0) | 2020.06.01 |
댓글