반응형
1. When:
git clone 시 용량이 너무 클 때 발생
네트워크 불안정 시에도 발생하는 듯
2. Error message:
fatal: 너무 빨리 파일이 끝남
fatal: early EOF
fatal: index-pack failed
3. Solution:
a. 히스토리를 제거하고 clone
--depth 1 추가
git clone --depth 1 https://github.com/example/example.git
b. 네트워크 연결 양호 확인
4. Reference:
Git Instruction page
https://git-scm.com/docs/git-clone#Documentation/git-clone.txt---depthltdepthgt
반응형
'개발' 카테고리의 다른 글
티스토리 스킨 변경 후 $ 인라인 구분자 수식이 깨질 때 해결 방법 (0) | 2024.02.05 |
---|---|
파이썬 시뮬레이터 앱 개발 - Streamlit, Gradio, Dash (0) | 2024.01.30 |
[ERROR] WARNING: Secure coding is not enabled for restorable state! (0) | 2024.01.17 |
[ERROR] copilot: Node.js not found in PATH (1) | 2023.12.26 |
[ERROR] [rejected] master -> master (fetch first) (1) | 2023.12.21 |