반응형
기본 셋팅
git http.postBuffer 증가
git config http.postBuffer 500000000
git config http.lowSpeedTime 증가
git config http.lowSpeedTime 600
★ 100MB 넘는 파일 있는지 확인 (100MB over size file)
위 셋팅을 하고 난 후 다시 git push를 하게 되면 100mb 가 넘는 파일들의 목록을 보여준다.
그 파일들이 꼭 필요한거라면 GIT LFS 를 찾아보자
그게 아니라면 .gitignore 로 제외 시켜주면 잘 push 된다.
github의 기본이 100mb 이하의 파일들만 받는다고 한다.
보조 정보
현재 git http.postBuffer 확인
git config http.postBuffer
아무것도 안뜨면 기본값(1MB)
git config http.lowSpeedTime
git config http.lowSpeedTime
참조
https://stackoverflow.com/questions/22369200/git-pull-push-error-rpc-failed-result-22-http-code-408
반응형
'Git' 카테고리의 다른 글
[Git] Git의 --bare 옵션: 무엇이고 언제 사용하는가? (0) | 2024.11.14 |
---|---|
[Git] 모든 브랜치 및 commit 기준으로 clone하기 (mirror/no-single-branch) (0) | 2024.11.13 |
[Git] git commit 파일 내용 검색 (feat. git grep / log -G) (0) | 2023.01.09 |
[Git] old mode new mode (0) | 2021.09.27 |
[Git] remote (0) | 2021.08.10 |