aboutsummaryrefslogtreecommitdiff
path: root/builtin/fetch.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-01-26 15:40:29 -0800
committerJunio C Hamano <gitster@pobox.com>2016-01-26 15:40:29 -0800
commit3c809405cb35679dd5205bf0ea118b7ee9256abb (patch)
treea063a643dbcbf96f11018cdf2f379f00b764b238 /builtin/fetch.c
parenteefc461ce3f2f0405639ff0919b844a894d6a02c (diff)
parentd5621020c1e0edfa998cb5c5e80cdf47f36ffb1a (diff)
downloadgit-3c809405cb35679dd5205bf0ea118b7ee9256abb.tar.gz
git-3c809405cb35679dd5205bf0ea118b7ee9256abb.tar.xz
Merge branch 'js/close-packs-before-gc'
Many codepaths that run "gc --auto" before exiting kept packfiles mapped and left the file descriptors to them open, which was not friendly to systems that cannot remove files that are open. They now close the packs before doing so. * js/close-packs-before-gc: receive-pack: release pack files before garbage-collecting merge: release pack files before garbage-collecting am: release pack files before garbage-collecting fetch: release pack files before garbage-collecting
Diffstat (limited to 'builtin/fetch.c')
-rw-r--r--builtin/fetch.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c
index 33f04c1b4..8e742135f 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -1225,6 +1225,8 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
list.strdup_strings = 1;
string_list_clear(&list, 0);
+ close_all_packs();
+
argv_array_pushl(&argv_gc_auto, "gc", "--auto", NULL);
if (verbosity < 0)
argv_array_push(&argv_gc_auto, "--quiet");