Git3 fatal: the remote end hung up unexpectedl 상황 : git push 중 오류 발생오류 내용 : fatal: the remote end hung up unexpectedly git push Enumerating objects: 37, done.Counting objects: 100% (37/37), done.Delta compression using up to 10 threadsCompressing objects: 100% (27/27), done.error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400send-pack: unexpected disconnect while reading sideband packetWriting objects: 100% (29/29), 1.09.. 2025. 1. 25. Repository가 너무 복잡하게 많을 때 문제 : 연관되는 Repository가 너무 분산되어 있다. 해결 : 하나의 리포지토리에 해당 리포지토리를 넣는다. 방법 :담을 리포지토리 생성 -> 깃 클론 -> initial commit ->git subtree add --prefix= 자기가 넣고자 하는 자식 repo를 어떤 폴더이름으로 추가할지를 ,폴더이름에 적어주고, 자식 repo주소도 채워주고 해당 자식 repo의 어떤 브랜치를 넣어줄지를 branch이름에 넣어준다. ex) git subtree add --prefix=gitRepository2-V9 https://github.com/jeli01/GitRepository2-V9.git main 그리고 git push -> 기존 리포지토리 삭제 하면 끝이다. 2025. 1. 21. fatal: Authentication failed for 오류 해결 문제 상황 : 새롭게 Repository를 만들고, 다음 명령어를 작성git push -u origin main에서 오류 발생echo "# design-pattern" >> README.mdgit initgit add README.mdgit commit -m "first commit"git branch -M maingit remote add origin https://github.com/jeli01/design-pattern.gitgit push -u origin main 오류 내용 : fatal: Authentication failed for 'https://github.com/jeli01/design-pattern.git/ 이유 : 깃 토큰 발급을 받아서 인증을 받아야함 해결책 : Setting.. 2025. 1. 14. 이전 1 다음