Git - troubleshooting

markyang92·2021년 4월 23일
0

git

목록 보기
7/14

pack error

  • git pack은 git이 기억하고 있는 모든 히스토리를 압축해서 저장해 놓는 곳
  • git pack error
error: index file .git/objects/pack._pack-a0ffaf1e.... is too small

In the local repository's config , and set repack.usedeltabaseoffset to false and then repacked the repository:

$ git config repack.usedeltabaseoffset false
$ git repack -a -d

profile
pllpokko@alumni.kaist.ac.kr

0개의 댓글