Make Git consume less disk space?

后端 未结 11 912
鱼传尺愫
鱼传尺愫 2020-12-24 05:19

What is the best way for git to consume less disk space?

I\'m using git-gc on my repositories (which does help, especially if there have been many commits since it w

11条回答
  •  [愿得一人]
    2020-12-24 06:03

    git prune might be a hint. it cleans the repository from unreachable commits (git gc does not call it)

提交回复
热议问题