This option specifies the minimum age of an object before it may be removed by prune. The default value is 2 hours and may be changed using gc.pruneexpire. Signed-off-by: Matthias Lederhofer <matled@gmx.net> --- Shawn O. Pearce <spearce@spearce.org> wrote:Here it is, I've set the default value to 2 hours as you suggested. Any other comments if the default should be a value >0 or 0 to keep the old behaviour? --- builtin-prune.c | 25 ++++++++++++++++++++++++- 1 files changed, 24 insertions(+), 1 deletions(-) diff --git a/builtin-prune.c b/builtin-prune.c index 6f0ba0d..f46892d 100644 --- a/builtin-prune.c +++ b/builtin-prune.c @@ -5,8 +5,10 @@ #include "builtin.h" #include "reachable.h" -static const char prune_usage[] = "git-prune [-n]"; +static const char prune_usage[] = "git-prune [-n] [--expire=seconds]"; static int show_only; +static int prune_expire; +static time_t now; static int prune_object(char *path, const char *filename, const unsigned char *sha1) { @@ -38,6 +40,7 @@ static int prune_dir(int i, char *path) char name[100]; unsigned char sha1[20]; int len = strlen(de->d_name); + struct stat st; switch (len) { case 2: @@ -60,6 +63,11 @@ static int prune_dir(int i, char *path) if (lookup_object(sha1)) continue; + if (prune_expire > 0 && + !stat(mkpath("%s/%s", path, de->d_name), &st) && + now-st.st_mtime < prune_expire) + continue; + prune_object(path, de->d_name, sha1); continue; } @@ -79,10 +87,21 @@ static void prune_object_dir(const char *path) } } +static void git_prune_config(const char *var, const char *value) +{ + if (!strcmp(var, "gc.pruneexpire")) { + prune_expire = git_config_int(var, value); + return 0; + } + return git_default_config(var, value); +} + int cmd_prune(int argc, const char **argv, const char *prefix) { int i; struct rev_info revs; + prune_expire = 2*60*60; + now = time(NULL); for (i = 1; i < argc; i++) { const char *arg = argv[i]; @@ -90,6 +109,10 @@ int cmd_prune(int argc, const char **argv, const char *prefix) show_only = 1; continue; } + if (!strncmp(arg, "--expire=", 9)) { + prune_expire = atoi(arg+9); + continue; + } usage(prune_usage); } -- 1.4.4.4 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
| Greg Kroah-Hartman | [PATCH 001/196] Chinese: Add the known_regression URI to the HOWTO |
| Ondrej Zary | pata_it821x completely broken |
| Linus Torvalds | Linux 2.6.27-rc8 |
| Greg KH | Linux 2.6.25.10 |
git: | |
| Jakub Narebski | Re: VCS comparison table |
| Theodore Tso | Re: git on MacOSX and files with decomposed utf-8 file names |
| Ken Pratt | Re: pack operation is thrashing my server |
| Junio C Hamano | Re: git-diff on touched files: bug or feature? |
| Richard Stallman | Real men don't attack straw men |
| qw er | OpenBSD sucks |
| Douglas A. Tutty | Re: low-MHz server |
| Josh Grosse | Re: ssh/sshd challenge-response seems to have stopped working in -current |
| Jeff Garzik | Re: [bug?] tg3: Failed to load firmware "tigon/tg3_tso.bin" |
| Steve Wise | pktgen question |
| Ingo Molnar | Re: [bug] stuck localhost TCP connections, v2.6.26-rc3+ |
| Sangtae Ha | Re: A Linux TCP SACK Question |
