Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How often should you use git-gc?

The manual page simply says:

Users are encouraged to run this task on a regular basis within each repository to maintain good disk space utilization and good operating performance.

Are there some commands to get some object counts to find out whether it's time to gc?

share|improve this question
Tasks like these are prime candidates for cron (if you are using linux) minhajuddin.com/2011/12/09/… – Khaja Minhajuddin Dec 9 '11 at 7:11

6 Answers

up vote 55 down vote accepted

It depends mostly on how much the repository is used. With one user checking in once a day and a branch/merge/etc operation once a week you probably don't need to run it more than once a year.

With several dozen developers working on several dozen projects each checking in 2-3 times a day, you might want to run it nightly.

It won't hurt to run it more frequently than needed, though.

What I'd do is run it now, then a week from now take a measurement of disk utilization, run it again, and measure disk utilization again. If it drops 5% in size, then run it once a week. If it drops more, then run it more frequently. If it drops less, then run it less frequently.

share|improve this answer

Note that the downside of garbage-collecting your repository is that, well, the garbage gets collected. As we all know as computer users, files we consider garbage right now might turn out to be very valuable three days in the future. The fact that git keeps most of its debris around has saved my bacon several times – by browsing all the dangling commits, I have recovered much work that I had accidentally canned.

So don’t be too much of a neat freak in your private clones. There’s little need for it.

OTOH, the value of data recoverability is questionable for repos used mainly as remotes, eg. the place all the devs push to and/or pulled from. There, it might be sensible to kick off a GC run and a repacking frequently.

share|improve this answer
3  
FWIW not all loose objects are garbage collected, only those older than 2 week by default (cf. git gc --help, specifically the --prune option). There is also mention of gc.reflogExpire, which leads me to believe that any commitish you've visited in the last 90 days will not be collected. (My git version: v1.7.6) – RobM Dec 6 '11 at 18:28
None of that affects my point, but yes, that is all correct. – Aristotle Pagaltzis Dec 8 '11 at 1:14
5  
+1 for pointing out that one man's garbage is another man's treasure. – rodarmor Aug 27 '12 at 19:09

Recent versions of git run gc automatically when required, so you shouldn't have to do anything. See the Options section of man git-gc(1): "Some git commands run git gc --auto after performing operations that could create many loose objects."

share|improve this answer

I use git gc after I do a big checkout, and have a lot of new object. it can save space. E.g. if you checkout a big SVN project using git-svn, and do a git gc, you typically save a lot of space

share|improve this answer

Drop it in a cron job that runs every night (afternoon?) when you're sleeping.

share|improve this answer

I just do it whenever I think about it. That tends to be once every week or two.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.