본문 바로가기
개발일지/Unreal Engine

깃허브에 푸시 에러 고치기

먼저 Git Bash에 디렉토리를 현재 작업중인 .git이 있는 디렉토리로 위치를 변경하고

.gitignore 에 100mb넘어가는 파일들은 포함하지 못하게 변경해서 Push했지만 아직도 오류 메세지가 발생하여서

오류 메세지를 구글링 해본결과

 

https://stackoverflow.com/questions/15240815/git-fatal-the-remote-end-hung-up-unexpectedly

 

Git, fatal: The remote end hung up unexpectedly

When I tried to run git push origin master --force I just got Counting objects: 2649, done. Delta compression using up to 2 threads. Compressing objects: 100% (1280/1280), done. error: RPC failed;

stackoverflow.com

 

버퍼사이즈가 작다는 결론에 

git config http.postBuffer 524288000

를 사용해서 http로 넘어갈 수 있는 버퍼사이즈를 500mb로 변경해 보았다.

그래도 똑같은 오류가 나길래  TortoiseGit 을 설치해서 GitDeskTop 말고 폴더채로 커밋하고 푸시해 보았다.

푸시 성공한걸보니 아마 GitHistory에 100mb 넘어간 파일이 남아있어서 그런것 같다

'개발일지 > Unreal Engine' 카테고리의 다른 글

카툰렌더링  (0) 2021.04.14
언리얼 360영상 만들어서 유투브에 올리기  (0) 2020.08.12
교령 개발일지  (0) 2020.08.03
GitHub연결  (0) 2020.08.01