Hi, On Tue, 11 Mar 2008, Junio C Hamano wrote: > Nicolas Pitre <nico@xxxxxxx> writes: > > >> Can we also have "why this is a good idea", "what problem this > >> solves"? > > > > FWIW, my agreeing with the "why this is a good idea" can be translated > > into: > > > > Acked-by: Nicolas Pitre <nico@xxxxxxx> > > Hmmm. Is it _that_ obvious? > > At least it would be easier to readers if we had something like this in > the documentation (and/or the commit message): > > "git gc" used to never prune unreachable objects without being > explicitly told to, with its --prune option. This left cruft to > accumulate; the user eventually has to run "git prune" manually. > > It is safe to prune old objects that are unreachable from refs nor > reflogs. "git gc" is updated to run "git prune --expire 2.weeks.ago" > so that users has to run "git prune" by hand much less often. > > Is it too much to ask for regulars to set the example of justifying why > each of the change is a good idea? I would have written something like Earlier, git-gc would not prune loose objects without being called with --prune. However, users were actively warned that it is not a safe operation, so most users never called it. This makes the operation reasonably safe (unless you have critical git operations running for over two weeks), by pruning only those objects that are old (in the sense of git operations, which typically take no more than a few seconds). However, I think that it should have been obvious to those who know the internals of git-gc, and it is completely uninteresting to those that are just users. All they will realise (or not) is that "git gc --auto" now less often complains about too many loose objects (hopefully). The real question I asked was: is 2 weeks a sensible default? As I said, I was almost tempted to reduce it to 3 days. Hmm? Ciao, Dscho -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html