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
git prune might be a hint. it cleans the repository from unreachable commits (git gc does not call it)
git prune
git gc