Gaegul's devlog

[git] fatal 오류 해결: the remote end hung up unexpectedly Everything up-to-date 본문

Git

[git] fatal 오류 해결: the remote end hung up unexpectedly Everything up-to-date

부지런깨꾹이 2022. 8. 19. 17:59
728x90
반응형

Solution 1. Buffer 늘리기

이런 경우는 git의 post buffer 사이즈 문제이기 때문에 버퍼 사이즈를 늘려줌니다.

git config --global http.postBuffer 1048576000

 

만약, 그런데도 올라가지 않는다고 하면 많은 용량을 차지하는 파일을 gitignore 파일로 제외시켜서 업로드해줘야 합니다. 

 

Solution 2. 불필요한 pretrained 모델 .pth 제외하고 올리기 (.gitignore file 만들기)

1) .gitignore 파일 만들기

git remote 가 되있는 프로젝트에 .gitignore 파일을 생성합니다. 

touch .gitignore

2) 특정 파일을 버전 관리에서 제외

echo "*.pth" >> .gitignore
cat .gitignore

3) 변경사항 staginng 영역에 추가 하고 커밋(commit)하기

git add . && git commit -m "*.pth"
728x90
반응형
Comments