What does “Auto packing the repository for optimum performance” mean?

后端 未结 5 1625
不知归路
不知归路 2020-12-07 07:53

I\'m having a problem with my git repo. For the last couple of days whenever I do a push to the server I get this message: \"Auto packing the repository for optimum performa

5条回答
  •  悲哀的现实
    2020-12-07 08:54

    Git is running git-repack, which packs many objects(=files, commits and trees) into one pack file. Git does this sometimes, when a heuristic says that there can be space saved (a pack file contains compressed object deltas, while each file in the objects/ directory contains the compressed full file content)

提交回复
热议问题