fetch-pack: add --no-filter
[gitweb.git] / builtin / index-pack.c
index 24c2f05cc02d3cdff6dabb248cc5185b73eec557..a0a35e69c0a044fa40a2481c22ef56a766b23e41 100644 (file)
@@ -1657,6 +1657,12 @@ int cmd_index_pack(int argc, const char **argv, const char *prefix)
        unsigned foreign_nr = 1;        /* zero is a "good" value, assume bad */
        int report_end_of_input = 0;
 
+       /*
+        * index-pack never needs to fetch missing objects, since it only
+        * accesses the repo to do hash collision checks
+        */
+       fetch_if_missing = 0;
+
        if (argc == 2 && !strcmp(argv[1], "-h"))
                usage(index_pack_usage);