James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 1 | /* |
| 2 | * git gc builtin command |
| 3 | * |
| 4 | * Cleanup unreachable files and optimize the repository. |
| 5 | * |
| 6 | * Copyright (c) 2007 James Bowes |
| 7 | * |
| 8 | * Based on git-gc.sh, which is |
| 9 | * |
| 10 | * Copyright (c) 2006 Shawn O. Pearce |
| 11 | */ |
| 12 | |
Peter Hagervall | baffc0e | 2007-07-15 01:14:45 +0200 | [diff] [blame] | 13 | #include "builtin.h" |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 14 | #include "cache.h" |
James Bowes | 44c637c | 2007-11-01 21:02:27 -0400 | [diff] [blame] | 15 | #include "parse-options.h" |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 16 | #include "run-command.h" |
Jonathan Nieder | 4c5baf0 | 2013-10-16 16:11:46 -0700 | [diff] [blame] | 17 | #include "sigchain.h" |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 18 | #include "argv-array.h" |
Nguyễn Thái Ngọc Duy | eab3296 | 2013-12-05 20:02:54 +0700 | [diff] [blame] | 19 | #include "commit.h" |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 20 | |
| 21 | #define FAILED_RUN "failed to run %s" |
| 22 | |
James Bowes | 44c637c | 2007-11-01 21:02:27 -0400 | [diff] [blame] | 23 | static const char * const builtin_gc_usage[] = { |
Nguyễn Thái Ngọc Duy | 6705c16 | 2012-08-20 19:32:14 +0700 | [diff] [blame] | 24 | N_("git gc [options]"), |
James Bowes | 44c637c | 2007-11-01 21:02:27 -0400 | [diff] [blame] | 25 | NULL |
| 26 | }; |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 27 | |
Linus Torvalds | 5675239 | 2007-05-24 11:41:39 -0700 | [diff] [blame] | 28 | static int pack_refs = 1; |
Johannes Schindelin | 1c192f3 | 2007-12-06 12:03:38 +0000 | [diff] [blame] | 29 | static int aggressive_window = 250; |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 30 | static int gc_auto_threshold = 6700; |
Junio C Hamano | 9706397 | 2008-03-23 00:04:48 -0700 | [diff] [blame] | 31 | static int gc_auto_pack_limit = 50; |
David Bryson | d3154b4 | 2008-09-30 13:28:58 -0700 | [diff] [blame] | 32 | static const char *prune_expire = "2.weeks.ago"; |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 33 | |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 34 | static struct argv_array pack_refs_cmd = ARGV_ARRAY_INIT; |
| 35 | static struct argv_array reflog = ARGV_ARRAY_INIT; |
| 36 | static struct argv_array repack = ARGV_ARRAY_INIT; |
| 37 | static struct argv_array prune = ARGV_ARRAY_INIT; |
| 38 | static struct argv_array rerere = ARGV_ARRAY_INIT; |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 39 | |
Jonathan Nieder | 4c5baf0 | 2013-10-16 16:11:46 -0700 | [diff] [blame] | 40 | static char *pidfile; |
| 41 | |
| 42 | static void remove_pidfile(void) |
| 43 | { |
| 44 | if (pidfile) |
| 45 | unlink(pidfile); |
| 46 | } |
| 47 | |
| 48 | static void remove_pidfile_on_signal(int signo) |
| 49 | { |
| 50 | remove_pidfile(); |
| 51 | sigchain_pop(signo); |
| 52 | raise(signo); |
| 53 | } |
| 54 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 55 | static int gc_config(const char *var, const char *value, void *cb) |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 56 | { |
| 57 | if (!strcmp(var, "gc.packrefs")) { |
Miklos Vajna | c5e5a2c | 2008-02-08 15:26:18 +0100 | [diff] [blame] | 58 | if (value && !strcmp(value, "notbare")) |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 59 | pack_refs = -1; |
| 60 | else |
| 61 | pack_refs = git_config_bool(var, value); |
| 62 | return 0; |
| 63 | } |
Theodore Tso | 0d7566a | 2007-05-09 15:48:39 -0400 | [diff] [blame] | 64 | if (!strcmp(var, "gc.aggressivewindow")) { |
| 65 | aggressive_window = git_config_int(var, value); |
| 66 | return 0; |
| 67 | } |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 68 | if (!strcmp(var, "gc.auto")) { |
| 69 | gc_auto_threshold = git_config_int(var, value); |
| 70 | return 0; |
| 71 | } |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 72 | if (!strcmp(var, "gc.autopacklimit")) { |
| 73 | gc_auto_pack_limit = git_config_int(var, value); |
| 74 | return 0; |
| 75 | } |
Johannes Schindelin | 25ee973 | 2008-03-12 21:55:47 +0100 | [diff] [blame] | 76 | if (!strcmp(var, "gc.pruneexpire")) { |
David Bryson | d3154b4 | 2008-09-30 13:28:58 -0700 | [diff] [blame] | 77 | if (value && strcmp(value, "now")) { |
Johannes Schindelin | 25ee973 | 2008-03-12 21:55:47 +0100 | [diff] [blame] | 78 | unsigned long now = approxidate("now"); |
| 79 | if (approxidate(value) >= now) |
Ævar Arnfjörð Bjarmason | fea6128 | 2011-02-22 23:42:24 +0000 | [diff] [blame] | 80 | return error(_("Invalid %s: '%s'"), var, value); |
Johannes Schindelin | 25ee973 | 2008-03-12 21:55:47 +0100 | [diff] [blame] | 81 | } |
David Bryson | d3154b4 | 2008-09-30 13:28:58 -0700 | [diff] [blame] | 82 | return git_config_string(&prune_expire, var, value); |
Johannes Schindelin | 25ee973 | 2008-03-12 21:55:47 +0100 | [diff] [blame] | 83 | } |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 84 | return git_default_config(var, value, cb); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 85 | } |
| 86 | |
Junio C Hamano | a087cc9 | 2007-09-17 00:44:17 -0700 | [diff] [blame] | 87 | static int too_many_loose_objects(void) |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 88 | { |
| 89 | /* |
| 90 | * Quickly check if a "gc" is needed, by estimating how |
| 91 | * many loose objects there are. Because SHA-1 is evenly |
| 92 | * distributed, we can check only one and get a reasonable |
| 93 | * estimate. |
| 94 | */ |
| 95 | char path[PATH_MAX]; |
| 96 | const char *objdir = get_object_directory(); |
| 97 | DIR *dir; |
| 98 | struct dirent *ent; |
| 99 | int auto_threshold; |
| 100 | int num_loose = 0; |
| 101 | int needed = 0; |
| 102 | |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 103 | if (gc_auto_threshold <= 0) |
| 104 | return 0; |
| 105 | |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 106 | if (sizeof(path) <= snprintf(path, sizeof(path), "%s/17", objdir)) { |
Ævar Arnfjörð Bjarmason | fea6128 | 2011-02-22 23:42:24 +0000 | [diff] [blame] | 107 | warning(_("insanely long object directory %.*s"), 50, objdir); |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | dir = opendir(path); |
| 111 | if (!dir) |
| 112 | return 0; |
| 113 | |
| 114 | auto_threshold = (gc_auto_threshold + 255) / 256; |
| 115 | while ((ent = readdir(dir)) != NULL) { |
| 116 | if (strspn(ent->d_name, "0123456789abcdef") != 38 || |
| 117 | ent->d_name[38] != '\0') |
| 118 | continue; |
| 119 | if (++num_loose > auto_threshold) { |
| 120 | needed = 1; |
| 121 | break; |
| 122 | } |
| 123 | } |
| 124 | closedir(dir); |
| 125 | return needed; |
| 126 | } |
| 127 | |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 128 | static int too_many_packs(void) |
| 129 | { |
| 130 | struct packed_git *p; |
| 131 | int cnt; |
| 132 | |
| 133 | if (gc_auto_pack_limit <= 0) |
| 134 | return 0; |
| 135 | |
| 136 | prepare_packed_git(); |
| 137 | for (cnt = 0, p = packed_git; p; p = p->next) { |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 138 | if (!p->pack_local) |
| 139 | continue; |
Brandon Casey | 01af249 | 2008-11-12 11:59:07 -0600 | [diff] [blame] | 140 | if (p->pack_keep) |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 141 | continue; |
| 142 | /* |
| 143 | * Perhaps check the size of the pack and count only |
| 144 | * very small ones here? |
| 145 | */ |
| 146 | cnt++; |
| 147 | } |
| 148 | return gc_auto_pack_limit <= cnt; |
| 149 | } |
| 150 | |
Jeff King | 7e52f56 | 2012-04-07 06:30:09 -0400 | [diff] [blame] | 151 | static void add_repack_all_option(void) |
| 152 | { |
| 153 | if (prune_expire && !strcmp(prune_expire, "now")) |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 154 | argv_array_push(&repack, "-a"); |
Jeff King | 7e52f56 | 2012-04-07 06:30:09 -0400 | [diff] [blame] | 155 | else { |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 156 | argv_array_push(&repack, "-A"); |
| 157 | if (prune_expire) |
| 158 | argv_array_pushf(&repack, "--unpack-unreachable=%s", prune_expire); |
Jeff King | 7e52f56 | 2012-04-07 06:30:09 -0400 | [diff] [blame] | 159 | } |
| 160 | } |
| 161 | |
Junio C Hamano | a087cc9 | 2007-09-17 00:44:17 -0700 | [diff] [blame] | 162 | static int need_to_gc(void) |
| 163 | { |
| 164 | /* |
Brandon Casey | b14d255 | 2008-03-19 16:53:20 -0500 | [diff] [blame] | 165 | * Setting gc.auto to 0 or negative can disable the |
| 166 | * automatic gc. |
Junio C Hamano | a087cc9 | 2007-09-17 00:44:17 -0700 | [diff] [blame] | 167 | */ |
Brandon Casey | b14d255 | 2008-03-19 16:53:20 -0500 | [diff] [blame] | 168 | if (gc_auto_threshold <= 0) |
Junio C Hamano | a087cc9 | 2007-09-17 00:44:17 -0700 | [diff] [blame] | 169 | return 0; |
| 170 | |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 171 | /* |
| 172 | * If there are too many loose objects, but not too many |
| 173 | * packs, we run "repack -d -l". If there are too many packs, |
| 174 | * we run "repack -A -d -l". Otherwise we tell the caller |
| 175 | * there is no need. |
| 176 | */ |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 177 | if (too_many_packs()) |
Jeff King | 7e52f56 | 2012-04-07 06:30:09 -0400 | [diff] [blame] | 178 | add_repack_all_option(); |
Junio C Hamano | 1781550 | 2007-09-17 00:55:13 -0700 | [diff] [blame] | 179 | else if (!too_many_loose_objects()) |
| 180 | return 0; |
Miklos Vajna | bde3054 | 2008-04-02 21:34:38 +0200 | [diff] [blame] | 181 | |
Benoit Pierre | 15048f8 | 2014-03-18 11:00:53 +0100 | [diff] [blame^] | 182 | if (run_hook_le(NULL, "pre-auto-gc", NULL)) |
Miklos Vajna | bde3054 | 2008-04-02 21:34:38 +0200 | [diff] [blame] | 183 | return 0; |
Junio C Hamano | 95143f9 | 2007-09-17 00:48:39 -0700 | [diff] [blame] | 184 | return 1; |
Junio C Hamano | a087cc9 | 2007-09-17 00:44:17 -0700 | [diff] [blame] | 185 | } |
| 186 | |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 187 | /* return NULL on success, else hostname running the gc */ |
| 188 | static const char *lock_repo_for_gc(int force, pid_t* ret_pid) |
| 189 | { |
| 190 | static struct lock_file lock; |
| 191 | static char locking_host[128]; |
| 192 | char my_host[128]; |
| 193 | struct strbuf sb = STRBUF_INIT; |
| 194 | struct stat st; |
| 195 | uintmax_t pid; |
| 196 | FILE *fp; |
| 197 | int fd, should_exit; |
| 198 | |
Jonathan Nieder | 4c5baf0 | 2013-10-16 16:11:46 -0700 | [diff] [blame] | 199 | if (pidfile) |
| 200 | /* already locked */ |
| 201 | return NULL; |
| 202 | |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 203 | if (gethostname(my_host, sizeof(my_host))) |
| 204 | strcpy(my_host, "unknown"); |
| 205 | |
| 206 | fd = hold_lock_file_for_update(&lock, git_path("gc.pid"), |
| 207 | LOCK_DIE_ON_ERROR); |
| 208 | if (!force) { |
| 209 | fp = fopen(git_path("gc.pid"), "r"); |
| 210 | memset(locking_host, 0, sizeof(locking_host)); |
| 211 | should_exit = |
| 212 | fp != NULL && |
| 213 | !fstat(fileno(fp), &st) && |
| 214 | /* |
| 215 | * 12 hour limit is very generous as gc should |
| 216 | * never take that long. On the other hand we |
| 217 | * don't really need a strict limit here, |
| 218 | * running gc --auto one day late is not a big |
| 219 | * problem. --force can be used in manual gc |
| 220 | * after the user verifies that no gc is |
| 221 | * running. |
| 222 | */ |
| 223 | time(NULL) - st.st_mtime <= 12 * 3600 && |
| 224 | fscanf(fp, "%"PRIuMAX" %127c", &pid, locking_host) == 2 && |
| 225 | /* be gentle to concurrent "gc" on remote hosts */ |
Kyle J. McKay | ed7eda8 | 2013-12-31 04:07:39 -0800 | [diff] [blame] | 226 | (strcmp(locking_host, my_host) || !kill(pid, 0) || errno == EPERM); |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 227 | if (fp != NULL) |
| 228 | fclose(fp); |
| 229 | if (should_exit) { |
| 230 | if (fd >= 0) |
| 231 | rollback_lock_file(&lock); |
| 232 | *ret_pid = pid; |
| 233 | return locking_host; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | strbuf_addf(&sb, "%"PRIuMAX" %s", |
| 238 | (uintmax_t) getpid(), my_host); |
| 239 | write_in_full(fd, sb.buf, sb.len); |
| 240 | strbuf_release(&sb); |
| 241 | commit_lock_file(&lock); |
| 242 | |
Jonathan Nieder | 4c5baf0 | 2013-10-16 16:11:46 -0700 | [diff] [blame] | 243 | pidfile = git_pathdup("gc.pid"); |
| 244 | sigchain_push_common(remove_pidfile_on_signal); |
| 245 | atexit(remove_pidfile); |
| 246 | |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 247 | return NULL; |
| 248 | } |
| 249 | |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 250 | int cmd_gc(int argc, const char **argv, const char *prefix) |
| 251 | { |
James Bowes | 44c637c | 2007-11-01 21:02:27 -0400 | [diff] [blame] | 252 | int aggressive = 0; |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 253 | int auto_gc = 0; |
Frank Lichtenheld | a0c14cb | 2008-02-29 22:53:39 +0100 | [diff] [blame] | 254 | int quiet = 0; |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 255 | int force = 0; |
| 256 | const char *name; |
| 257 | pid_t pid; |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 258 | |
James Bowes | 44c637c | 2007-11-01 21:02:27 -0400 | [diff] [blame] | 259 | struct option builtin_gc_options[] = { |
Nguyễn Thái Ngọc Duy | 6705c16 | 2012-08-20 19:32:14 +0700 | [diff] [blame] | 260 | OPT__QUIET(&quiet, N_("suppress progress reporting")), |
| 261 | { OPTION_STRING, 0, "prune", &prune_expire, N_("date"), |
| 262 | N_("prune unreferenced objects"), |
Johannes Schindelin | 58e9d9d | 2009-02-14 23:10:10 +0100 | [diff] [blame] | 263 | PARSE_OPT_OPTARG, NULL, (intptr_t)prune_expire }, |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 264 | OPT_BOOL(0, "aggressive", &aggressive, N_("be more thorough (increased runtime)")), |
| 265 | OPT_BOOL(0, "auto", &auto_gc, N_("enable auto-gc mode")), |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 266 | OPT_BOOL(0, "force", &force, N_("force running gc even if there may be another gc running")), |
James Bowes | 44c637c | 2007-11-01 21:02:27 -0400 | [diff] [blame] | 267 | OPT_END() |
| 268 | }; |
| 269 | |
Nguyễn Thái Ngọc Duy | 0c8151b | 2010-10-22 01:47:19 -0500 | [diff] [blame] | 270 | if (argc == 2 && !strcmp(argv[1], "-h")) |
| 271 | usage_with_options(builtin_gc_usage, builtin_gc_options); |
| 272 | |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 273 | argv_array_pushl(&pack_refs_cmd, "pack-refs", "--all", "--prune", NULL); |
| 274 | argv_array_pushl(&reflog, "reflog", "expire", "--all", NULL); |
| 275 | argv_array_pushl(&repack, "repack", "-d", "-l", NULL); |
| 276 | argv_array_pushl(&prune, "prune", "--expire", NULL ); |
| 277 | argv_array_pushl(&rerere, "rerere", "gc", NULL); |
| 278 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 279 | git_config(gc_config, NULL); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 280 | |
| 281 | if (pack_refs < 0) |
| 282 | pack_refs = !is_bare_repository(); |
| 283 | |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 284 | argc = parse_options(argc, argv, prefix, builtin_gc_options, |
| 285 | builtin_gc_usage, 0); |
James Bowes | 44c637c | 2007-11-01 21:02:27 -0400 | [diff] [blame] | 286 | if (argc > 0) |
| 287 | usage_with_options(builtin_gc_usage, builtin_gc_options); |
| 288 | |
| 289 | if (aggressive) { |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 290 | argv_array_push(&repack, "-f"); |
| 291 | argv_array_push(&repack, "--depth=250"); |
| 292 | if (aggressive_window > 0) |
| 293 | argv_array_pushf(&repack, "--window=%d", aggressive_window); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 294 | } |
Frank Lichtenheld | a0c14cb | 2008-02-29 22:53:39 +0100 | [diff] [blame] | 295 | if (quiet) |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 296 | argv_array_push(&repack, "-q"); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 297 | |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 298 | if (auto_gc) { |
| 299 | /* |
| 300 | * Auto-gc should be least intrusive as possible. |
| 301 | */ |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 302 | if (!need_to_gc()) |
| 303 | return 0; |
Tobias Ulmer | df995c7 | 2012-09-24 04:40:24 +0200 | [diff] [blame] | 304 | if (!quiet) |
Ævar Arnfjörð Bjarmason | f6908ae | 2011-02-22 23:42:25 +0000 | [diff] [blame] | 305 | fprintf(stderr, |
| 306 | _("Auto packing the repository for optimum performance. You may also\n" |
| 307 | "run \"git gc\" manually. See " |
Andreas Schwab | daab4ee | 2011-06-19 10:03:26 +0200 | [diff] [blame] | 308 | "\"git help gc\" for more information.\n")); |
Brandon Casey | a37cce3 | 2008-05-09 23:01:56 -0500 | [diff] [blame] | 309 | } else |
Jeff King | 7e52f56 | 2012-04-07 06:30:09 -0400 | [diff] [blame] | 310 | add_repack_all_option(); |
Junio C Hamano | 2c3c439 | 2007-09-05 13:01:37 -0700 | [diff] [blame] | 311 | |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 312 | name = lock_repo_for_gc(force, &pid); |
| 313 | if (name) { |
| 314 | if (auto_gc) |
| 315 | return 0; /* be quiet on --auto */ |
| 316 | die(_("gc is already running on machine '%s' pid %"PRIuMAX" (use --force if not)"), |
| 317 | name, (uintmax_t)pid); |
| 318 | } |
| 319 | |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 320 | if (pack_refs && run_command_v_opt(pack_refs_cmd.argv, RUN_GIT_CMD)) |
| 321 | return error(FAILED_RUN, pack_refs_cmd.argv[0]); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 322 | |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 323 | if (run_command_v_opt(reflog.argv, RUN_GIT_CMD)) |
| 324 | return error(FAILED_RUN, reflog.argv[0]); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 325 | |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 326 | if (run_command_v_opt(repack.argv, RUN_GIT_CMD)) |
| 327 | return error(FAILED_RUN, repack.argv[0]); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 328 | |
Johannes Schindelin | 58e9d9d | 2009-02-14 23:10:10 +0100 | [diff] [blame] | 329 | if (prune_expire) { |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 330 | argv_array_push(&prune, prune_expire); |
Jeff King | bf0a59b | 2011-11-08 00:34:08 -0500 | [diff] [blame] | 331 | if (quiet) |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 332 | argv_array_push(&prune, "--no-progress"); |
| 333 | if (run_command_v_opt(prune.argv, RUN_GIT_CMD)) |
| 334 | return error(FAILED_RUN, prune.argv[0]); |
Johannes Schindelin | 58e9d9d | 2009-02-14 23:10:10 +0100 | [diff] [blame] | 335 | } |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 336 | |
Jeff King | 234587f | 2012-04-18 14:10:19 -0700 | [diff] [blame] | 337 | if (run_command_v_opt(rerere.argv, RUN_GIT_CMD)) |
| 338 | return error(FAILED_RUN, rerere.argv[0]); |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 339 | |
Junio C Hamano | a087cc9 | 2007-09-17 00:44:17 -0700 | [diff] [blame] | 340 | if (auto_gc && too_many_loose_objects()) |
Ævar Arnfjörð Bjarmason | fea6128 | 2011-02-22 23:42:24 +0000 | [diff] [blame] | 341 | warning(_("There are too many unreachable loose objects; " |
| 342 | "run 'git prune' to remove them.")); |
Junio C Hamano | a087cc9 | 2007-09-17 00:44:17 -0700 | [diff] [blame] | 343 | |
James Bowes | 6757ada | 2007-03-13 21:58:22 -0400 | [diff] [blame] | 344 | return 0; |
| 345 | } |