Found 4 matching messages (0.116 seconds). Page 1 of 1.
- [PATCH] prune-packed: new option --min-age=N
This option makes prune-packed ignore all packs younger than N seconds
( ... : Matthias Lederhofer
---
This option allows to remove the unpacked version ... &= ~VERBOSE;
+ else if (!strncmp(arg, "--min-age=", 10))
+ min_age = atoi(arg+10) ...
git - Matthias Lederhofer - Jan 18 2007 - 13:18
- Re: [PATCH] prune-packed: new option --min-age=N
... warning about automatic prune-packed
> (e.g. cron), so this patch does not ... automatically on
> repositories while new objects are created.
An age makes sense on ... it from a gc.pruneexpire
configuration option, much like gc.reflogexpire.
--
Shawn.
- ...
git - Shawn O. Pearce - Jan 18 2007 - 13:51
- Re: [PATCH] prune-packed: new option --min-age=N
... wrote:
> > This option allows to remove the unpacked version of ... warning about automatic prune-packed
(e.g. cron), so this patch does not ... prune automatically on
repositories while new objects are created.
-
To unsubscribe from this ...
git - Matthias Lederhofer - Jan 18 2007 - 13:42
- Re: [PATCH] prune-packed: new option --min-age=N
... wrote:
> This option allows to remove the unpacked version ... only if
> it has been packed for a minimum time. It ... around
> the problem of freshly packed objects which should not be ... .
Are we not rescanning for new packs if we fail to ...
git - Shawn O. Pearce - Jan 18 2007 - 13:24