git을 전송할때 압축하는데 서버측에서 메모리 부족으로 뻗을수 있으니
로컬에서 압축하지 않고 보내도록 하면 되는 듯?
remote: Counting objects: 50044, done. remote: aborting due to possible repository corruption on the remote side. fatal: 프로토콜 오류: 잘못된 묶음 헤더 |
Adding git config --global pack.window "0" worked for me...along with following git config --global pack.windowMemory "100m" git config --global pack.packSizeLimit "100m" git config --global pack.threads "1" Reason: Git clone compresses the data while cloning the repository It compresses the data on the server memory before receiving the data/files. If the server has out of memory you will get the above error while packing the objects You can fix the issue by making git clone the repository without packing the objects on the server with the following. git config --global pack.window "0" |
[링크 : https://stackoverflow.com/questions/4170317/git-pull-error-remote-object-is-corrupted]
'프로그램 사용 > Version Control' 카테고리의 다른 글
git 에서 push 하지 않은 commit 확인하기 (0) | 2019.11.23 |
---|---|
git 리비전 오가기 (0) | 2019.11.20 |
git 저장소 합치기 (0) | 2019.06.03 |
gitignore 특정 파일은 예외에서 제외시키기 (0) | 2019.04.17 |
gitlab 서비스 명(centos) (0) | 2019.02.15 |