What is the best way for git to consume less disk space?
I'm using git-gc on my repositories but I would like suggestions if there is any other command to shrink the disk space used by git.
Thanks
What is the best way for git to consume less disk space?
I'm using git-gc on my repositories but I would like suggestions if there is any other command to shrink the disk space used by git.
Thanks
Git gc will remove unused objects. That is about everything you can do.
You could consider splitting up your repositories if they become too big.
Every git repository contains the entire history. While git does a fairly good job of compressing this stuff, there's simply a lot of data in there.
The "obvious" but potentially not-possible-for-you solution is to start a new repository without all that old history.
git-gc calls lots of other commands that are used to clean up and compress the repository. All you could do is delete some old unused branches.
Short answer: No :-(
You can repack your repository. However i think it's called by git gc
git repack -ad
Depending on what you want to do with your repository, you might also consider using the following git clone
option:
--depth <depth>
Create a shallow clone with a history truncated to the specified
number of revisions. A shallow repository has a number of
limitations (you cannot clone or fetch from it, nor push from nor
into it), but is adequate if you are only interested in the recent
history of a large project with a long history, and would want to
send in fixes as patches.
git prune
might be a hint. it cleans the repository from unreachable commits (git gc
does not call it)
There are a few suggestions I can offer:
Delete no longer used branches. They can pin some commits that you don't use and would never use. Take care however to not delete branches that you would later need (perhaps for review, or for comparison of failed effort). Backup first.
Check if you didn't commit some large binary file (perhaps some generated file) by mistake. If you have, you can purge it from history using "git filter-branch"... well, if you didn't share the repository, or it is worth aggravating other contributors to rewrite history. Again: backup first.
You can prune more aggressively, discarding some safeties, bu using git gc --prune=now
, or low-level git prune
. But take care that you don't remove safeties and backups (like reflog) that you need minute after compacting.
Perhaps what enlarges your repository are some untracked files in working directory. There "make clean" or "git clean" might help (but take care that you don't remove some important files).
Most safe of all those suggestions: you can try to pack more aggressively, using --depth
and --window
option of low-level git-repack
. See also Git Repack Parameters blog post by Pieter de Bie on his DVCS Comparison blog, from June 6, 2008. Or "git gc --aggressive
".