]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/fetch.c
fetch: help translators by reusing the same message template
[thirdparty/git.git] / builtin / fetch.c
1 /*
2 * "git fetch"
3 */
4 #include "cache.h"
5 #include "config.h"
6 #include "repository.h"
7 #include "refs.h"
8 #include "refspec.h"
9 #include "object-store.h"
10 #include "oidset.h"
11 #include "commit.h"
12 #include "builtin.h"
13 #include "string-list.h"
14 #include "remote.h"
15 #include "transport.h"
16 #include "run-command.h"
17 #include "parse-options.h"
18 #include "sigchain.h"
19 #include "submodule-config.h"
20 #include "submodule.h"
21 #include "connected.h"
22 #include "strvec.h"
23 #include "utf8.h"
24 #include "packfile.h"
25 #include "list-objects-filter-options.h"
26 #include "commit-reach.h"
27 #include "branch.h"
28 #include "promisor-remote.h"
29 #include "commit-graph.h"
30 #include "shallow.h"
31
32 #define FORCED_UPDATES_DELAY_WARNING_IN_MS (10 * 1000)
33
34 static const char * const builtin_fetch_usage[] = {
35 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
36 N_("git fetch [<options>] <group>"),
37 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
38 N_("git fetch --all [<options>]"),
39 NULL
40 };
41
42 enum {
43 TAGS_UNSET = 0,
44 TAGS_DEFAULT = 1,
45 TAGS_SET = 2
46 };
47
48 static int fetch_prune_config = -1; /* unspecified */
49 static int fetch_show_forced_updates = 1;
50 static uint64_t forced_updates_ms = 0;
51 static int prefetch = 0;
52 static int prune = -1; /* unspecified */
53 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
54
55 static int fetch_prune_tags_config = -1; /* unspecified */
56 static int prune_tags = -1; /* unspecified */
57 #define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
58
59 static int all, append, dry_run, force, keep, multiple, update_head_ok;
60 static int write_fetch_head = 1;
61 static int verbosity, deepen_relative, set_upstream;
62 static int progress = -1;
63 static int enable_auto_gc = 1;
64 static int tags = TAGS_DEFAULT, unshallow, update_shallow, deepen;
65 static int max_jobs = -1, submodule_fetch_jobs_config = -1;
66 static int fetch_parallel_config = 1;
67 static int atomic_fetch;
68 static enum transport_family family;
69 static const char *depth;
70 static const char *deepen_since;
71 static const char *upload_pack;
72 static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
73 static struct strbuf default_rla = STRBUF_INIT;
74 static struct transport *gtransport;
75 static struct transport *gsecondary;
76 static const char *submodule_prefix = "";
77 static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
78 static int recurse_submodules_cli = RECURSE_SUBMODULES_DEFAULT;
79 static int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
80 static int shown_url = 0;
81 static struct refspec refmap = REFSPEC_INIT_FETCH;
82 static struct list_objects_filter_options filter_options;
83 static struct string_list server_options = STRING_LIST_INIT_DUP;
84 static struct string_list negotiation_tip = STRING_LIST_INIT_NODUP;
85 static int fetch_write_commit_graph = -1;
86 static int stdin_refspecs = 0;
87 static int negotiate_only;
88
89 static int git_fetch_config(const char *k, const char *v, void *cb)
90 {
91 if (!strcmp(k, "fetch.prune")) {
92 fetch_prune_config = git_config_bool(k, v);
93 return 0;
94 }
95
96 if (!strcmp(k, "fetch.prunetags")) {
97 fetch_prune_tags_config = git_config_bool(k, v);
98 return 0;
99 }
100
101 if (!strcmp(k, "fetch.showforcedupdates")) {
102 fetch_show_forced_updates = git_config_bool(k, v);
103 return 0;
104 }
105
106 if (!strcmp(k, "submodule.recurse")) {
107 int r = git_config_bool(k, v) ?
108 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
109 recurse_submodules = r;
110 }
111
112 if (!strcmp(k, "submodule.fetchjobs")) {
113 submodule_fetch_jobs_config = parse_submodule_fetchjobs(k, v);
114 return 0;
115 } else if (!strcmp(k, "fetch.recursesubmodules")) {
116 recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
117 return 0;
118 }
119
120 if (!strcmp(k, "fetch.parallel")) {
121 fetch_parallel_config = git_config_int(k, v);
122 if (fetch_parallel_config < 0)
123 die(_("fetch.parallel cannot be negative"));
124 return 0;
125 }
126
127 return git_default_config(k, v, cb);
128 }
129
130 static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
131 {
132 BUG_ON_OPT_NEG(unset);
133
134 /*
135 * "git fetch --refmap='' origin foo"
136 * can be used to tell the command not to store anywhere
137 */
138 refspec_append(&refmap, arg);
139
140 return 0;
141 }
142
143 static struct option builtin_fetch_options[] = {
144 OPT__VERBOSITY(&verbosity),
145 OPT_BOOL(0, "all", &all,
146 N_("fetch from all remotes")),
147 OPT_BOOL(0, "set-upstream", &set_upstream,
148 N_("set upstream for git pull/fetch")),
149 OPT_BOOL('a', "append", &append,
150 N_("append to .git/FETCH_HEAD instead of overwriting")),
151 OPT_BOOL(0, "atomic", &atomic_fetch,
152 N_("use atomic transaction to update references")),
153 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
154 N_("path to upload pack on remote end")),
155 OPT__FORCE(&force, N_("force overwrite of local reference"), 0),
156 OPT_BOOL('m', "multiple", &multiple,
157 N_("fetch from multiple remotes")),
158 OPT_SET_INT('t', "tags", &tags,
159 N_("fetch all tags and associated objects"), TAGS_SET),
160 OPT_SET_INT('n', NULL, &tags,
161 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
162 OPT_INTEGER('j', "jobs", &max_jobs,
163 N_("number of submodules fetched in parallel")),
164 OPT_BOOL(0, "prefetch", &prefetch,
165 N_("modify the refspec to place all refs within refs/prefetch/")),
166 OPT_BOOL('p', "prune", &prune,
167 N_("prune remote-tracking branches no longer on remote")),
168 OPT_BOOL('P', "prune-tags", &prune_tags,
169 N_("prune local tags no longer on remote and clobber changed tags")),
170 OPT_CALLBACK_F(0, "recurse-submodules", &recurse_submodules_cli, N_("on-demand"),
171 N_("control recursive fetching of submodules"),
172 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules),
173 OPT_BOOL(0, "dry-run", &dry_run,
174 N_("dry run")),
175 OPT_BOOL(0, "write-fetch-head", &write_fetch_head,
176 N_("write fetched references to the FETCH_HEAD file")),
177 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
178 OPT_BOOL('u', "update-head-ok", &update_head_ok,
179 N_("allow updating of HEAD ref")),
180 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
181 OPT_STRING(0, "depth", &depth, N_("depth"),
182 N_("deepen history of shallow clone")),
183 OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
184 N_("deepen history of shallow repository based on time")),
185 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
186 N_("deepen history of shallow clone, excluding rev")),
187 OPT_INTEGER(0, "deepen", &deepen_relative,
188 N_("deepen history of shallow clone")),
189 OPT_SET_INT_F(0, "unshallow", &unshallow,
190 N_("convert to a complete repository"),
191 1, PARSE_OPT_NONEG),
192 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
193 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
194 OPT_CALLBACK_F(0, "recurse-submodules-default",
195 &recurse_submodules_default, N_("on-demand"),
196 N_("default for recursive fetching of submodules "
197 "(lower priority than config files)"),
198 PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules),
199 OPT_BOOL(0, "update-shallow", &update_shallow,
200 N_("accept refs that update .git/shallow")),
201 OPT_CALLBACK_F(0, "refmap", NULL, N_("refmap"),
202 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg),
203 OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
204 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
205 TRANSPORT_FAMILY_IPV4),
206 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
207 TRANSPORT_FAMILY_IPV6),
208 OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip, N_("revision"),
209 N_("report that we have only objects reachable from this object")),
210 OPT_BOOL(0, "negotiate-only", &negotiate_only,
211 N_("do not fetch a packfile; instead, print ancestors of negotiation tips")),
212 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
213 OPT_BOOL(0, "auto-maintenance", &enable_auto_gc,
214 N_("run 'maintenance --auto' after fetching")),
215 OPT_BOOL(0, "auto-gc", &enable_auto_gc,
216 N_("run 'maintenance --auto' after fetching")),
217 OPT_BOOL(0, "show-forced-updates", &fetch_show_forced_updates,
218 N_("check for forced-updates on all updated branches")),
219 OPT_BOOL(0, "write-commit-graph", &fetch_write_commit_graph,
220 N_("write the commit-graph after fetching")),
221 OPT_BOOL(0, "stdin", &stdin_refspecs,
222 N_("accept refspecs from stdin")),
223 OPT_END()
224 };
225
226 static void unlock_pack(void)
227 {
228 if (gtransport)
229 transport_unlock_pack(gtransport);
230 if (gsecondary)
231 transport_unlock_pack(gsecondary);
232 }
233
234 static void unlock_pack_on_signal(int signo)
235 {
236 unlock_pack();
237 sigchain_pop(signo);
238 raise(signo);
239 }
240
241 static void add_merge_config(struct ref **head,
242 const struct ref *remote_refs,
243 struct branch *branch,
244 struct ref ***tail)
245 {
246 int i;
247
248 for (i = 0; i < branch->merge_nr; i++) {
249 struct ref *rm, **old_tail = *tail;
250 struct refspec_item refspec;
251
252 for (rm = *head; rm; rm = rm->next) {
253 if (branch_merge_matches(branch, i, rm->name)) {
254 rm->fetch_head_status = FETCH_HEAD_MERGE;
255 break;
256 }
257 }
258 if (rm)
259 continue;
260
261 /*
262 * Not fetched to a remote-tracking branch? We need to fetch
263 * it anyway to allow this branch's "branch.$name.merge"
264 * to be honored by 'git pull', but we do not have to
265 * fail if branch.$name.merge is misconfigured to point
266 * at a nonexisting branch. If we were indeed called by
267 * 'git pull', it will notice the misconfiguration because
268 * there is no entry in the resulting FETCH_HEAD marked
269 * for merging.
270 */
271 memset(&refspec, 0, sizeof(refspec));
272 refspec.src = branch->merge[i]->src;
273 get_fetch_map(remote_refs, &refspec, tail, 1);
274 for (rm = *old_tail; rm; rm = rm->next)
275 rm->fetch_head_status = FETCH_HEAD_MERGE;
276 }
277 }
278
279 static void create_fetch_oidset(struct ref **head, struct oidset *out)
280 {
281 struct ref *rm = *head;
282 while (rm) {
283 oidset_insert(out, &rm->old_oid);
284 rm = rm->next;
285 }
286 }
287
288 struct refname_hash_entry {
289 struct hashmap_entry ent;
290 struct object_id oid;
291 int ignore;
292 char refname[FLEX_ARRAY];
293 };
294
295 static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data,
296 const struct hashmap_entry *eptr,
297 const struct hashmap_entry *entry_or_key,
298 const void *keydata)
299 {
300 const struct refname_hash_entry *e1, *e2;
301
302 e1 = container_of(eptr, const struct refname_hash_entry, ent);
303 e2 = container_of(entry_or_key, const struct refname_hash_entry, ent);
304 return strcmp(e1->refname, keydata ? keydata : e2->refname);
305 }
306
307 static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
308 const char *refname,
309 const struct object_id *oid)
310 {
311 struct refname_hash_entry *ent;
312 size_t len = strlen(refname);
313
314 FLEX_ALLOC_MEM(ent, refname, refname, len);
315 hashmap_entry_init(&ent->ent, strhash(refname));
316 oidcpy(&ent->oid, oid);
317 hashmap_add(map, &ent->ent);
318 return ent;
319 }
320
321 static int add_one_refname(const char *refname,
322 const struct object_id *oid,
323 int flag, void *cbdata)
324 {
325 struct hashmap *refname_map = cbdata;
326
327 (void) refname_hash_add(refname_map, refname, oid);
328 return 0;
329 }
330
331 static void refname_hash_init(struct hashmap *map)
332 {
333 hashmap_init(map, refname_hash_entry_cmp, NULL, 0);
334 }
335
336 static int refname_hash_exists(struct hashmap *map, const char *refname)
337 {
338 return !!hashmap_get_from_hash(map, strhash(refname), refname);
339 }
340
341 static void clear_item(struct refname_hash_entry *item)
342 {
343 item->ignore = 1;
344 }
345
346 static void find_non_local_tags(const struct ref *refs,
347 struct ref **head,
348 struct ref ***tail)
349 {
350 struct hashmap existing_refs;
351 struct hashmap remote_refs;
352 struct oidset fetch_oids = OIDSET_INIT;
353 struct string_list remote_refs_list = STRING_LIST_INIT_NODUP;
354 struct string_list_item *remote_ref_item;
355 const struct ref *ref;
356 struct refname_hash_entry *item = NULL;
357 const int quick_flags = OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT;
358
359 refname_hash_init(&existing_refs);
360 refname_hash_init(&remote_refs);
361 create_fetch_oidset(head, &fetch_oids);
362
363 for_each_ref(add_one_refname, &existing_refs);
364 for (ref = refs; ref; ref = ref->next) {
365 if (!starts_with(ref->name, "refs/tags/"))
366 continue;
367
368 /*
369 * The peeled ref always follows the matching base
370 * ref, so if we see a peeled ref that we don't want
371 * to fetch then we can mark the ref entry in the list
372 * as one to ignore by setting util to NULL.
373 */
374 if (ends_with(ref->name, "^{}")) {
375 if (item &&
376 !has_object_file_with_flags(&ref->old_oid, quick_flags) &&
377 !oidset_contains(&fetch_oids, &ref->old_oid) &&
378 !has_object_file_with_flags(&item->oid, quick_flags) &&
379 !oidset_contains(&fetch_oids, &item->oid))
380 clear_item(item);
381 item = NULL;
382 continue;
383 }
384
385 /*
386 * If item is non-NULL here, then we previously saw a
387 * ref not followed by a peeled reference, so we need
388 * to check if it is a lightweight tag that we want to
389 * fetch.
390 */
391 if (item &&
392 !has_object_file_with_flags(&item->oid, quick_flags) &&
393 !oidset_contains(&fetch_oids, &item->oid))
394 clear_item(item);
395
396 item = NULL;
397
398 /* skip duplicates and refs that we already have */
399 if (refname_hash_exists(&remote_refs, ref->name) ||
400 refname_hash_exists(&existing_refs, ref->name))
401 continue;
402
403 item = refname_hash_add(&remote_refs, ref->name, &ref->old_oid);
404 string_list_insert(&remote_refs_list, ref->name);
405 }
406 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
407
408 /*
409 * We may have a final lightweight tag that needs to be
410 * checked to see if it needs fetching.
411 */
412 if (item &&
413 !has_object_file_with_flags(&item->oid, quick_flags) &&
414 !oidset_contains(&fetch_oids, &item->oid))
415 clear_item(item);
416
417 /*
418 * For all the tags in the remote_refs_list,
419 * add them to the list of refs to be fetched
420 */
421 for_each_string_list_item(remote_ref_item, &remote_refs_list) {
422 const char *refname = remote_ref_item->string;
423 struct ref *rm;
424 unsigned int hash = strhash(refname);
425
426 item = hashmap_get_entry_from_hash(&remote_refs, hash, refname,
427 struct refname_hash_entry, ent);
428 if (!item)
429 BUG("unseen remote ref?");
430
431 /* Unless we have already decided to ignore this item... */
432 if (item->ignore)
433 continue;
434
435 rm = alloc_ref(item->refname);
436 rm->peer_ref = alloc_ref(item->refname);
437 oidcpy(&rm->old_oid, &item->oid);
438 **tail = rm;
439 *tail = &rm->next;
440 }
441 hashmap_clear_and_free(&remote_refs, struct refname_hash_entry, ent);
442 string_list_clear(&remote_refs_list, 0);
443 oidset_clear(&fetch_oids);
444 }
445
446 static void filter_prefetch_refspec(struct refspec *rs)
447 {
448 int i;
449
450 if (!prefetch)
451 return;
452
453 for (i = 0; i < rs->nr; i++) {
454 struct strbuf new_dst = STRBUF_INIT;
455 char *old_dst;
456 const char *sub = NULL;
457
458 if (rs->items[i].negative)
459 continue;
460 if (!rs->items[i].dst ||
461 (rs->items[i].src &&
462 !strncmp(rs->items[i].src, "refs/tags/", 10))) {
463 int j;
464
465 free(rs->items[i].src);
466 free(rs->items[i].dst);
467
468 for (j = i + 1; j < rs->nr; j++) {
469 rs->items[j - 1] = rs->items[j];
470 rs->raw[j - 1] = rs->raw[j];
471 }
472 rs->nr--;
473 i--;
474 continue;
475 }
476
477 old_dst = rs->items[i].dst;
478 strbuf_addstr(&new_dst, "refs/prefetch/");
479
480 /*
481 * If old_dst starts with "refs/", then place
482 * sub after that prefix. Otherwise, start at
483 * the beginning of the string.
484 */
485 if (!skip_prefix(old_dst, "refs/", &sub))
486 sub = old_dst;
487 strbuf_addstr(&new_dst, sub);
488
489 rs->items[i].dst = strbuf_detach(&new_dst, NULL);
490 rs->items[i].force = 1;
491
492 free(old_dst);
493 }
494 }
495
496 static struct ref *get_ref_map(struct remote *remote,
497 const struct ref *remote_refs,
498 struct refspec *rs,
499 int tags, int *autotags)
500 {
501 int i;
502 struct ref *rm;
503 struct ref *ref_map = NULL;
504 struct ref **tail = &ref_map;
505
506 /* opportunistically-updated references: */
507 struct ref *orefs = NULL, **oref_tail = &orefs;
508
509 struct hashmap existing_refs;
510 int existing_refs_populated = 0;
511
512 filter_prefetch_refspec(rs);
513 if (remote)
514 filter_prefetch_refspec(&remote->fetch);
515
516 if (rs->nr) {
517 struct refspec *fetch_refspec;
518
519 for (i = 0; i < rs->nr; i++) {
520 get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
521 if (rs->items[i].dst && rs->items[i].dst[0])
522 *autotags = 1;
523 }
524 /* Merge everything on the command line (but not --tags) */
525 for (rm = ref_map; rm; rm = rm->next)
526 rm->fetch_head_status = FETCH_HEAD_MERGE;
527
528 /*
529 * For any refs that we happen to be fetching via
530 * command-line arguments, the destination ref might
531 * have been missing or have been different than the
532 * remote-tracking ref that would be derived from the
533 * configured refspec. In these cases, we want to
534 * take the opportunity to update their configured
535 * remote-tracking reference. However, we do not want
536 * to mention these entries in FETCH_HEAD at all, as
537 * they would simply be duplicates of existing
538 * entries, so we set them FETCH_HEAD_IGNORE below.
539 *
540 * We compute these entries now, based only on the
541 * refspecs specified on the command line. But we add
542 * them to the list following the refspecs resulting
543 * from the tags option so that one of the latter,
544 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
545 * by ref_remove_duplicates() in favor of one of these
546 * opportunistic entries with FETCH_HEAD_IGNORE.
547 */
548 if (refmap.nr)
549 fetch_refspec = &refmap;
550 else
551 fetch_refspec = &remote->fetch;
552
553 for (i = 0; i < fetch_refspec->nr; i++)
554 get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
555 } else if (refmap.nr) {
556 die("--refmap option is only meaningful with command-line refspec(s).");
557 } else {
558 /* Use the defaults */
559 struct branch *branch = branch_get(NULL);
560 int has_merge = branch_has_merge_config(branch);
561 if (remote &&
562 (remote->fetch.nr ||
563 /* Note: has_merge implies non-NULL branch->remote_name */
564 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
565 for (i = 0; i < remote->fetch.nr; i++) {
566 get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
567 if (remote->fetch.items[i].dst &&
568 remote->fetch.items[i].dst[0])
569 *autotags = 1;
570 if (!i && !has_merge && ref_map &&
571 !remote->fetch.items[0].pattern)
572 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
573 }
574 /*
575 * if the remote we're fetching from is the same
576 * as given in branch.<name>.remote, we add the
577 * ref given in branch.<name>.merge, too.
578 *
579 * Note: has_merge implies non-NULL branch->remote_name
580 */
581 if (has_merge &&
582 !strcmp(branch->remote_name, remote->name))
583 add_merge_config(&ref_map, remote_refs, branch, &tail);
584 } else if (!prefetch) {
585 ref_map = get_remote_ref(remote_refs, "HEAD");
586 if (!ref_map)
587 die(_("Couldn't find remote ref HEAD"));
588 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
589 tail = &ref_map->next;
590 }
591 }
592
593 if (tags == TAGS_SET)
594 /* also fetch all tags */
595 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
596 else if (tags == TAGS_DEFAULT && *autotags)
597 find_non_local_tags(remote_refs, &ref_map, &tail);
598
599 /* Now append any refs to be updated opportunistically: */
600 *tail = orefs;
601 for (rm = orefs; rm; rm = rm->next) {
602 rm->fetch_head_status = FETCH_HEAD_IGNORE;
603 tail = &rm->next;
604 }
605
606 /*
607 * apply negative refspecs first, before we remove duplicates. This is
608 * necessary as negative refspecs might remove an otherwise conflicting
609 * duplicate.
610 */
611 if (rs->nr)
612 ref_map = apply_negative_refspecs(ref_map, rs);
613 else
614 ref_map = apply_negative_refspecs(ref_map, &remote->fetch);
615
616 ref_map = ref_remove_duplicates(ref_map);
617
618 for (rm = ref_map; rm; rm = rm->next) {
619 if (rm->peer_ref) {
620 const char *refname = rm->peer_ref->name;
621 struct refname_hash_entry *peer_item;
622 unsigned int hash = strhash(refname);
623
624 if (!existing_refs_populated) {
625 refname_hash_init(&existing_refs);
626 for_each_ref(add_one_refname, &existing_refs);
627 existing_refs_populated = 1;
628 }
629
630 peer_item = hashmap_get_entry_from_hash(&existing_refs,
631 hash, refname,
632 struct refname_hash_entry, ent);
633 if (peer_item) {
634 struct object_id *old_oid = &peer_item->oid;
635 oidcpy(&rm->peer_ref->old_oid, old_oid);
636 }
637 }
638 }
639 if (existing_refs_populated)
640 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
641
642 return ref_map;
643 }
644
645 #define STORE_REF_ERROR_OTHER 1
646 #define STORE_REF_ERROR_DF_CONFLICT 2
647
648 static int s_update_ref(const char *action,
649 struct ref *ref,
650 struct ref_transaction *transaction,
651 int check_old)
652 {
653 char *msg;
654 char *rla = getenv("GIT_REFLOG_ACTION");
655 struct ref_transaction *our_transaction = NULL;
656 struct strbuf err = STRBUF_INIT;
657 int ret;
658
659 if (dry_run)
660 return 0;
661 if (!rla)
662 rla = default_rla.buf;
663 msg = xstrfmt("%s: %s", rla, action);
664
665 /*
666 * If no transaction was passed to us, we manage the transaction
667 * ourselves. Otherwise, we trust the caller to handle the transaction
668 * lifecycle.
669 */
670 if (!transaction) {
671 transaction = our_transaction = ref_transaction_begin(&err);
672 if (!transaction) {
673 ret = STORE_REF_ERROR_OTHER;
674 goto out;
675 }
676 }
677
678 ret = ref_transaction_update(transaction, ref->name, &ref->new_oid,
679 check_old ? &ref->old_oid : NULL,
680 0, msg, &err);
681 if (ret) {
682 ret = STORE_REF_ERROR_OTHER;
683 goto out;
684 }
685
686 if (our_transaction) {
687 switch (ref_transaction_commit(our_transaction, &err)) {
688 case 0:
689 break;
690 case TRANSACTION_NAME_CONFLICT:
691 ret = STORE_REF_ERROR_DF_CONFLICT;
692 goto out;
693 default:
694 ret = STORE_REF_ERROR_OTHER;
695 goto out;
696 }
697 }
698
699 out:
700 ref_transaction_free(our_transaction);
701 if (ret)
702 error("%s", err.buf);
703 strbuf_release(&err);
704 free(msg);
705 return ret;
706 }
707
708 static int refcol_width = 10;
709 static int compact_format;
710
711 static void adjust_refcol_width(const struct ref *ref)
712 {
713 int max, rlen, llen, len;
714
715 /* uptodate lines are only shown on high verbosity level */
716 if (verbosity <= 0 && oideq(&ref->peer_ref->old_oid, &ref->old_oid))
717 return;
718
719 max = term_columns();
720 rlen = utf8_strwidth(prettify_refname(ref->name));
721
722 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
723
724 /*
725 * rough estimation to see if the output line is too long and
726 * should not be counted (we can't do precise calculation
727 * anyway because we don't know if the error explanation part
728 * will be printed in update_local_ref)
729 */
730 if (compact_format) {
731 llen = 0;
732 max = max * 2 / 3;
733 }
734 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
735 if (len >= max)
736 return;
737
738 /*
739 * Not precise calculation for compact mode because '*' can
740 * appear on the left hand side of '->' and shrink the column
741 * back.
742 */
743 if (refcol_width < rlen)
744 refcol_width = rlen;
745 }
746
747 static void prepare_format_display(struct ref *ref_map)
748 {
749 struct ref *rm;
750 const char *format = "full";
751
752 if (verbosity < 0)
753 return;
754
755 git_config_get_string_tmp("fetch.output", &format);
756 if (!strcasecmp(format, "full"))
757 compact_format = 0;
758 else if (!strcasecmp(format, "compact"))
759 compact_format = 1;
760 else
761 die(_("configuration fetch.output contains invalid value %s"),
762 format);
763
764 for (rm = ref_map; rm; rm = rm->next) {
765 if (rm->status == REF_STATUS_REJECT_SHALLOW ||
766 !rm->peer_ref ||
767 !strcmp(rm->name, "HEAD"))
768 continue;
769
770 adjust_refcol_width(rm);
771 }
772 }
773
774 static void print_remote_to_local(struct strbuf *display,
775 const char *remote, const char *local)
776 {
777 strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
778 }
779
780 static int find_and_replace(struct strbuf *haystack,
781 const char *needle,
782 const char *placeholder)
783 {
784 const char *p = NULL;
785 int plen, nlen;
786
787 nlen = strlen(needle);
788 if (ends_with(haystack->buf, needle))
789 p = haystack->buf + haystack->len - nlen;
790 else
791 p = strstr(haystack->buf, needle);
792 if (!p)
793 return 0;
794
795 if (p > haystack->buf && p[-1] != '/')
796 return 0;
797
798 plen = strlen(p);
799 if (plen > nlen && p[nlen] != '/')
800 return 0;
801
802 strbuf_splice(haystack, p - haystack->buf, nlen,
803 placeholder, strlen(placeholder));
804 return 1;
805 }
806
807 static void print_compact(struct strbuf *display,
808 const char *remote, const char *local)
809 {
810 struct strbuf r = STRBUF_INIT;
811 struct strbuf l = STRBUF_INIT;
812
813 if (!strcmp(remote, local)) {
814 strbuf_addf(display, "%-*s -> *", refcol_width, remote);
815 return;
816 }
817
818 strbuf_addstr(&r, remote);
819 strbuf_addstr(&l, local);
820
821 if (!find_and_replace(&r, local, "*"))
822 find_and_replace(&l, remote, "*");
823 print_remote_to_local(display, r.buf, l.buf);
824
825 strbuf_release(&r);
826 strbuf_release(&l);
827 }
828
829 static void format_display(struct strbuf *display, char code,
830 const char *summary, const char *error,
831 const char *remote, const char *local,
832 int summary_width)
833 {
834 int width;
835
836 if (verbosity < 0)
837 return;
838
839 width = (summary_width + strlen(summary) - gettext_width(summary));
840
841 strbuf_addf(display, "%c %-*s ", code, width, summary);
842 if (!compact_format)
843 print_remote_to_local(display, remote, local);
844 else
845 print_compact(display, remote, local);
846 if (error)
847 strbuf_addf(display, " (%s)", error);
848 }
849
850 static int update_local_ref(struct ref *ref,
851 struct ref_transaction *transaction,
852 const char *remote,
853 const struct ref *remote_ref,
854 struct strbuf *display,
855 int summary_width)
856 {
857 struct commit *current = NULL, *updated;
858 struct branch *current_branch = branch_get(NULL);
859 const char *pretty_ref = prettify_refname(ref->name);
860 int fast_forward = 0;
861
862 if (!repo_has_object_file(the_repository, &ref->new_oid))
863 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
864
865 if (oideq(&ref->old_oid, &ref->new_oid)) {
866 if (verbosity > 0)
867 format_display(display, '=', _("[up to date]"), NULL,
868 remote, pretty_ref, summary_width);
869 return 0;
870 }
871
872 if (current_branch &&
873 !strcmp(ref->name, current_branch->name) &&
874 !(update_head_ok || is_bare_repository()) &&
875 !is_null_oid(&ref->old_oid)) {
876 /*
877 * If this is the head, and it's not okay to update
878 * the head, and the old value of the head isn't empty...
879 */
880 format_display(display, '!', _("[rejected]"),
881 _("can't fetch in current branch"),
882 remote, pretty_ref, summary_width);
883 return 1;
884 }
885
886 if (!is_null_oid(&ref->old_oid) &&
887 starts_with(ref->name, "refs/tags/")) {
888 if (force || ref->force) {
889 int r;
890 r = s_update_ref("updating tag", ref, transaction, 0);
891 format_display(display, r ? '!' : 't', _("[tag update]"),
892 r ? _("unable to update local ref") : NULL,
893 remote, pretty_ref, summary_width);
894 return r;
895 } else {
896 format_display(display, '!', _("[rejected]"), _("would clobber existing tag"),
897 remote, pretty_ref, summary_width);
898 return 1;
899 }
900 }
901
902 current = lookup_commit_reference_gently(the_repository,
903 &ref->old_oid, 1);
904 updated = lookup_commit_reference_gently(the_repository,
905 &ref->new_oid, 1);
906 if (!current || !updated) {
907 const char *msg;
908 const char *what;
909 int r;
910 /*
911 * Nicely describe the new ref we're fetching.
912 * Base this on the remote's ref name, as it's
913 * more likely to follow a standard layout.
914 */
915 const char *name = remote_ref ? remote_ref->name : "";
916 if (starts_with(name, "refs/tags/")) {
917 msg = "storing tag";
918 what = _("[new tag]");
919 } else if (starts_with(name, "refs/heads/")) {
920 msg = "storing head";
921 what = _("[new branch]");
922 } else {
923 msg = "storing ref";
924 what = _("[new ref]");
925 }
926
927 r = s_update_ref(msg, ref, transaction, 0);
928 format_display(display, r ? '!' : '*', what,
929 r ? _("unable to update local ref") : NULL,
930 remote, pretty_ref, summary_width);
931 return r;
932 }
933
934 if (fetch_show_forced_updates) {
935 uint64_t t_before = getnanotime();
936 fast_forward = in_merge_bases(current, updated);
937 forced_updates_ms += (getnanotime() - t_before) / 1000000;
938 } else {
939 fast_forward = 1;
940 }
941
942 if (fast_forward) {
943 struct strbuf quickref = STRBUF_INIT;
944 int r;
945
946 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
947 strbuf_addstr(&quickref, "..");
948 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
949 r = s_update_ref("fast-forward", ref, transaction, 1);
950 format_display(display, r ? '!' : ' ', quickref.buf,
951 r ? _("unable to update local ref") : NULL,
952 remote, pretty_ref, summary_width);
953 strbuf_release(&quickref);
954 return r;
955 } else if (force || ref->force) {
956 struct strbuf quickref = STRBUF_INIT;
957 int r;
958 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
959 strbuf_addstr(&quickref, "...");
960 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
961 r = s_update_ref("forced-update", ref, transaction, 1);
962 format_display(display, r ? '!' : '+', quickref.buf,
963 r ? _("unable to update local ref") : _("forced update"),
964 remote, pretty_ref, summary_width);
965 strbuf_release(&quickref);
966 return r;
967 } else {
968 format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
969 remote, pretty_ref, summary_width);
970 return 1;
971 }
972 }
973
974 static const struct object_id *iterate_ref_map(void *cb_data)
975 {
976 struct ref **rm = cb_data;
977 struct ref *ref = *rm;
978
979 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
980 ref = ref->next;
981 if (!ref)
982 return NULL;
983 *rm = ref->next;
984 return &ref->old_oid;
985 }
986
987 struct fetch_head {
988 FILE *fp;
989 struct strbuf buf;
990 };
991
992 static int open_fetch_head(struct fetch_head *fetch_head)
993 {
994 const char *filename = git_path_fetch_head(the_repository);
995
996 if (write_fetch_head) {
997 fetch_head->fp = fopen(filename, "a");
998 if (!fetch_head->fp)
999 return error_errno(_("cannot open %s"), filename);
1000 strbuf_init(&fetch_head->buf, 0);
1001 } else {
1002 fetch_head->fp = NULL;
1003 }
1004
1005 return 0;
1006 }
1007
1008 static void append_fetch_head(struct fetch_head *fetch_head,
1009 const struct object_id *old_oid,
1010 enum fetch_head_status fetch_head_status,
1011 const char *note,
1012 const char *url, size_t url_len)
1013 {
1014 char old_oid_hex[GIT_MAX_HEXSZ + 1];
1015 const char *merge_status_marker;
1016 size_t i;
1017
1018 if (!fetch_head->fp)
1019 return;
1020
1021 switch (fetch_head_status) {
1022 case FETCH_HEAD_NOT_FOR_MERGE:
1023 merge_status_marker = "not-for-merge";
1024 break;
1025 case FETCH_HEAD_MERGE:
1026 merge_status_marker = "";
1027 break;
1028 default:
1029 /* do not write anything to FETCH_HEAD */
1030 return;
1031 }
1032
1033 strbuf_addf(&fetch_head->buf, "%s\t%s\t%s",
1034 oid_to_hex_r(old_oid_hex, old_oid), merge_status_marker, note);
1035 for (i = 0; i < url_len; ++i)
1036 if ('\n' == url[i])
1037 strbuf_addstr(&fetch_head->buf, "\\n");
1038 else
1039 strbuf_addch(&fetch_head->buf, url[i]);
1040 strbuf_addch(&fetch_head->buf, '\n');
1041
1042 /*
1043 * When using an atomic fetch, we do not want to update FETCH_HEAD if
1044 * any of the reference updates fails. We thus have to write all
1045 * updates to a buffer first and only commit it as soon as all
1046 * references have been successfully updated.
1047 */
1048 if (!atomic_fetch) {
1049 strbuf_write(&fetch_head->buf, fetch_head->fp);
1050 strbuf_reset(&fetch_head->buf);
1051 }
1052 }
1053
1054 static void commit_fetch_head(struct fetch_head *fetch_head)
1055 {
1056 if (!fetch_head->fp || !atomic_fetch)
1057 return;
1058 strbuf_write(&fetch_head->buf, fetch_head->fp);
1059 }
1060
1061 static void close_fetch_head(struct fetch_head *fetch_head)
1062 {
1063 if (!fetch_head->fp)
1064 return;
1065
1066 fclose(fetch_head->fp);
1067 strbuf_release(&fetch_head->buf);
1068 }
1069
1070 static const char warn_show_forced_updates[] =
1071 N_("Fetch normally indicates which branches had a forced update,\n"
1072 "but that check has been disabled. To re-enable, use '--show-forced-updates'\n"
1073 "flag or run 'git config fetch.showForcedUpdates true'.");
1074 static const char warn_time_show_forced_updates[] =
1075 N_("It took %.2f seconds to check forced updates. You can use\n"
1076 "'--no-show-forced-updates' or run 'git config fetch.showForcedUpdates false'\n"
1077 " to avoid this check.\n");
1078
1079 static int store_updated_refs(const char *raw_url, const char *remote_name,
1080 int connectivity_checked, struct ref *ref_map)
1081 {
1082 struct fetch_head fetch_head;
1083 int url_len, i, rc = 0;
1084 struct strbuf note = STRBUF_INIT, err = STRBUF_INIT;
1085 struct ref_transaction *transaction = NULL;
1086 const char *what, *kind;
1087 struct ref *rm;
1088 char *url;
1089 int want_status;
1090 int summary_width = transport_summary_width(ref_map);
1091
1092 rc = open_fetch_head(&fetch_head);
1093 if (rc)
1094 return -1;
1095
1096 if (raw_url)
1097 url = transport_anonymize_url(raw_url);
1098 else
1099 url = xstrdup("foreign");
1100
1101 if (!connectivity_checked) {
1102 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1103
1104 rm = ref_map;
1105 if (check_connected(iterate_ref_map, &rm, &opt)) {
1106 rc = error(_("%s did not send all necessary objects\n"), url);
1107 goto abort;
1108 }
1109 }
1110
1111 if (atomic_fetch) {
1112 transaction = ref_transaction_begin(&err);
1113 if (!transaction) {
1114 error("%s", err.buf);
1115 goto abort;
1116 }
1117 }
1118
1119 prepare_format_display(ref_map);
1120
1121 /*
1122 * We do a pass for each fetch_head_status type in their enum order, so
1123 * merged entries are written before not-for-merge. That lets readers
1124 * use FETCH_HEAD as a refname to refer to the ref to be merged.
1125 */
1126 for (want_status = FETCH_HEAD_MERGE;
1127 want_status <= FETCH_HEAD_IGNORE;
1128 want_status++) {
1129 for (rm = ref_map; rm; rm = rm->next) {
1130 struct commit *commit = NULL;
1131 struct ref *ref = NULL;
1132
1133 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
1134 if (want_status == FETCH_HEAD_MERGE)
1135 warning(_("rejected %s because shallow roots are not allowed to be updated"),
1136 rm->peer_ref ? rm->peer_ref->name : rm->name);
1137 continue;
1138 }
1139
1140 /*
1141 * References in "refs/tags/" are often going to point
1142 * to annotated tags, which are not part of the
1143 * commit-graph. We thus only try to look up refs in
1144 * the graph which are not in that namespace to not
1145 * regress performance in repositories with many
1146 * annotated tags.
1147 */
1148 if (!starts_with(rm->name, "refs/tags/"))
1149 commit = lookup_commit_in_graph(the_repository, &rm->old_oid);
1150 if (!commit) {
1151 commit = lookup_commit_reference_gently(the_repository,
1152 &rm->old_oid,
1153 1);
1154 if (!commit)
1155 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
1156 }
1157
1158 if (rm->fetch_head_status != want_status)
1159 continue;
1160
1161 if (rm->peer_ref) {
1162 ref = alloc_ref(rm->peer_ref->name);
1163 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
1164 oidcpy(&ref->new_oid, &rm->old_oid);
1165 ref->force = rm->peer_ref->force;
1166 }
1167
1168 if (recurse_submodules != RECURSE_SUBMODULES_OFF &&
1169 (!rm->peer_ref || !oideq(&ref->old_oid, &ref->new_oid))) {
1170 check_for_new_submodule_commits(&rm->old_oid);
1171 }
1172
1173 if (!strcmp(rm->name, "HEAD")) {
1174 kind = "";
1175 what = "";
1176 }
1177 else if (skip_prefix(rm->name, "refs/heads/", &what))
1178 kind = "branch";
1179 else if (skip_prefix(rm->name, "refs/tags/", &what))
1180 kind = "tag";
1181 else if (skip_prefix(rm->name, "refs/remotes/", &what))
1182 kind = "remote-tracking branch";
1183 else {
1184 kind = "";
1185 what = rm->name;
1186 }
1187
1188 url_len = strlen(url);
1189 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1190 ;
1191 url_len = i + 1;
1192 if (4 < i && !strncmp(".git", url + i - 3, 4))
1193 url_len = i - 3;
1194
1195 strbuf_reset(&note);
1196 if (*what) {
1197 if (*kind)
1198 strbuf_addf(&note, "%s ", kind);
1199 strbuf_addf(&note, "'%s' of ", what);
1200 }
1201
1202 append_fetch_head(&fetch_head, &rm->old_oid,
1203 rm->fetch_head_status,
1204 note.buf, url, url_len);
1205
1206 strbuf_reset(&note);
1207 if (ref) {
1208 rc |= update_local_ref(ref, transaction, what,
1209 rm, &note, summary_width);
1210 free(ref);
1211 } else if (write_fetch_head || dry_run) {
1212 /*
1213 * Display fetches written to FETCH_HEAD (or
1214 * would be written to FETCH_HEAD, if --dry-run
1215 * is set).
1216 */
1217 format_display(&note, '*',
1218 *kind ? kind : "branch", NULL,
1219 *what ? what : "HEAD",
1220 "FETCH_HEAD", summary_width);
1221 }
1222 if (note.len) {
1223 if (!shown_url) {
1224 fprintf(stderr, _("From %.*s\n"),
1225 url_len, url);
1226 shown_url = 1;
1227 }
1228 fprintf(stderr, " %s\n", note.buf);
1229 }
1230 }
1231 }
1232
1233 if (!rc && transaction) {
1234 rc = ref_transaction_commit(transaction, &err);
1235 if (rc) {
1236 error("%s", err.buf);
1237 goto abort;
1238 }
1239 }
1240
1241 if (!rc)
1242 commit_fetch_head(&fetch_head);
1243
1244 if (rc & STORE_REF_ERROR_DF_CONFLICT)
1245 error(_("some local refs could not be updated; try running\n"
1246 " 'git remote prune %s' to remove any old, conflicting "
1247 "branches"), remote_name);
1248
1249 if (advice_enabled(ADVICE_FETCH_SHOW_FORCED_UPDATES)) {
1250 if (!fetch_show_forced_updates) {
1251 warning(_(warn_show_forced_updates));
1252 } else if (forced_updates_ms > FORCED_UPDATES_DELAY_WARNING_IN_MS) {
1253 warning(_(warn_time_show_forced_updates),
1254 forced_updates_ms / 1000.0);
1255 }
1256 }
1257
1258 abort:
1259 strbuf_release(&note);
1260 strbuf_release(&err);
1261 ref_transaction_free(transaction);
1262 free(url);
1263 close_fetch_head(&fetch_head);
1264 return rc;
1265 }
1266
1267 /*
1268 * We would want to bypass the object transfer altogether if
1269 * everything we are going to fetch already exists and is connected
1270 * locally.
1271 */
1272 static int check_exist_and_connected(struct ref *ref_map)
1273 {
1274 struct ref *rm = ref_map;
1275 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1276 struct ref *r;
1277
1278 /*
1279 * If we are deepening a shallow clone we already have these
1280 * objects reachable. Running rev-list here will return with
1281 * a good (0) exit status and we'll bypass the fetch that we
1282 * really need to perform. Claiming failure now will ensure
1283 * we perform the network exchange to deepen our history.
1284 */
1285 if (deepen)
1286 return -1;
1287
1288 /*
1289 * check_connected() allows objects to merely be promised, but
1290 * we need all direct targets to exist.
1291 */
1292 for (r = rm; r; r = r->next) {
1293 if (!has_object_file_with_flags(&r->old_oid,
1294 OBJECT_INFO_SKIP_FETCH_OBJECT))
1295 return -1;
1296 }
1297
1298 opt.quiet = 1;
1299 return check_connected(iterate_ref_map, &rm, &opt);
1300 }
1301
1302 static int fetch_and_consume_refs(struct transport *transport, struct ref *ref_map)
1303 {
1304 int connectivity_checked = 1;
1305 int ret;
1306
1307 /*
1308 * We don't need to perform a fetch in case we can already satisfy all
1309 * refs.
1310 */
1311 ret = check_exist_and_connected(ref_map);
1312 if (ret) {
1313 trace2_region_enter("fetch", "fetch_refs", the_repository);
1314 ret = transport_fetch_refs(transport, ref_map);
1315 trace2_region_leave("fetch", "fetch_refs", the_repository);
1316 if (ret)
1317 goto out;
1318 connectivity_checked = transport->smart_options ?
1319 transport->smart_options->connectivity_checked : 0;
1320 }
1321
1322 trace2_region_enter("fetch", "consume_refs", the_repository);
1323 ret = store_updated_refs(transport->url,
1324 transport->remote->name,
1325 connectivity_checked,
1326 ref_map);
1327 trace2_region_leave("fetch", "consume_refs", the_repository);
1328
1329 out:
1330 transport_unlock_pack(transport);
1331 return ret;
1332 }
1333
1334 static int prune_refs(struct refspec *rs, struct ref *ref_map,
1335 const char *raw_url)
1336 {
1337 int url_len, i, result = 0;
1338 struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
1339 char *url;
1340 int summary_width = transport_summary_width(stale_refs);
1341 const char *dangling_msg = dry_run
1342 ? _(" (%s will become dangling)")
1343 : _(" (%s has become dangling)");
1344
1345 if (raw_url)
1346 url = transport_anonymize_url(raw_url);
1347 else
1348 url = xstrdup("foreign");
1349
1350 url_len = strlen(url);
1351 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1352 ;
1353
1354 url_len = i + 1;
1355 if (4 < i && !strncmp(".git", url + i - 3, 4))
1356 url_len = i - 3;
1357
1358 if (!dry_run) {
1359 struct string_list refnames = STRING_LIST_INIT_NODUP;
1360
1361 for (ref = stale_refs; ref; ref = ref->next)
1362 string_list_append(&refnames, ref->name);
1363
1364 result = delete_refs("fetch: prune", &refnames, 0);
1365 string_list_clear(&refnames, 0);
1366 }
1367
1368 if (verbosity >= 0) {
1369 for (ref = stale_refs; ref; ref = ref->next) {
1370 struct strbuf sb = STRBUF_INIT;
1371 if (!shown_url) {
1372 fprintf(stderr, _("From %.*s\n"), url_len, url);
1373 shown_url = 1;
1374 }
1375 format_display(&sb, '-', _("[deleted]"), NULL,
1376 _("(none)"), prettify_refname(ref->name),
1377 summary_width);
1378 fprintf(stderr, " %s\n",sb.buf);
1379 strbuf_release(&sb);
1380 warn_dangling_symref(stderr, dangling_msg, ref->name);
1381 }
1382 }
1383
1384 free(url);
1385 free_refs(stale_refs);
1386 return result;
1387 }
1388
1389 static void check_not_current_branch(struct ref *ref_map)
1390 {
1391 struct branch *current_branch = branch_get(NULL);
1392
1393 if (is_bare_repository() || !current_branch)
1394 return;
1395
1396 for (; ref_map; ref_map = ref_map->next)
1397 if (ref_map->peer_ref && !strcmp(current_branch->refname,
1398 ref_map->peer_ref->name))
1399 die(_("Refusing to fetch into current branch %s "
1400 "of non-bare repository"), current_branch->refname);
1401 }
1402
1403 static int truncate_fetch_head(void)
1404 {
1405 const char *filename = git_path_fetch_head(the_repository);
1406 FILE *fp = fopen_for_writing(filename);
1407
1408 if (!fp)
1409 return error_errno(_("cannot open %s"), filename);
1410 fclose(fp);
1411 return 0;
1412 }
1413
1414 static void set_option(struct transport *transport, const char *name, const char *value)
1415 {
1416 int r = transport_set_option(transport, name, value);
1417 if (r < 0)
1418 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
1419 name, value, transport->url);
1420 if (r > 0)
1421 warning(_("Option \"%s\" is ignored for %s\n"),
1422 name, transport->url);
1423 }
1424
1425
1426 static int add_oid(const char *refname, const struct object_id *oid, int flags,
1427 void *cb_data)
1428 {
1429 struct oid_array *oids = cb_data;
1430
1431 oid_array_append(oids, oid);
1432 return 0;
1433 }
1434
1435 static void add_negotiation_tips(struct git_transport_options *smart_options)
1436 {
1437 struct oid_array *oids = xcalloc(1, sizeof(*oids));
1438 int i;
1439
1440 for (i = 0; i < negotiation_tip.nr; i++) {
1441 const char *s = negotiation_tip.items[i].string;
1442 int old_nr;
1443 if (!has_glob_specials(s)) {
1444 struct object_id oid;
1445 if (get_oid(s, &oid))
1446 die(_("%s is not a valid object"), s);
1447 if (!has_object(the_repository, &oid, 0))
1448 die(_("the object %s does not exist"), s);
1449 oid_array_append(oids, &oid);
1450 continue;
1451 }
1452 old_nr = oids->nr;
1453 for_each_glob_ref(add_oid, s, oids);
1454 if (old_nr == oids->nr)
1455 warning("Ignoring --negotiation-tip=%s because it does not match any refs",
1456 s);
1457 }
1458 smart_options->negotiation_tips = oids;
1459 }
1460
1461 static struct transport *prepare_transport(struct remote *remote, int deepen)
1462 {
1463 struct transport *transport;
1464
1465 transport = transport_get(remote, NULL);
1466 transport_set_verbosity(transport, verbosity, progress);
1467 transport->family = family;
1468 if (upload_pack)
1469 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1470 if (keep)
1471 set_option(transport, TRANS_OPT_KEEP, "yes");
1472 if (depth)
1473 set_option(transport, TRANS_OPT_DEPTH, depth);
1474 if (deepen && deepen_since)
1475 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1476 if (deepen && deepen_not.nr)
1477 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1478 (const char *)&deepen_not);
1479 if (deepen_relative)
1480 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1481 if (update_shallow)
1482 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1483 if (filter_options.choice) {
1484 const char *spec =
1485 expand_list_objects_filter_spec(&filter_options);
1486 set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER, spec);
1487 set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1488 }
1489 if (negotiation_tip.nr) {
1490 if (transport->smart_options)
1491 add_negotiation_tips(transport->smart_options);
1492 else
1493 warning("Ignoring --negotiation-tip because the protocol does not support it.");
1494 }
1495 return transport;
1496 }
1497
1498 static void backfill_tags(struct transport *transport, struct ref *ref_map)
1499 {
1500 int cannot_reuse;
1501
1502 /*
1503 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1504 * when remote helper is used (setting it to an empty string
1505 * is not unsetting). We could extend the remote helper
1506 * protocol for that, but for now, just force a new connection
1507 * without deepen-since. Similar story for deepen-not.
1508 */
1509 cannot_reuse = transport->cannot_reuse ||
1510 deepen_since || deepen_not.nr;
1511 if (cannot_reuse) {
1512 gsecondary = prepare_transport(transport->remote, 0);
1513 transport = gsecondary;
1514 }
1515
1516 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1517 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1518 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1519 fetch_and_consume_refs(transport, ref_map);
1520
1521 if (gsecondary) {
1522 transport_disconnect(gsecondary);
1523 gsecondary = NULL;
1524 }
1525 }
1526
1527 static int do_fetch(struct transport *transport,
1528 struct refspec *rs)
1529 {
1530 struct ref *ref_map;
1531 int autotags = (transport->remote->fetch_tags == 1);
1532 int retcode = 0;
1533 const struct ref *remote_refs;
1534 struct transport_ls_refs_options transport_ls_refs_options =
1535 TRANSPORT_LS_REFS_OPTIONS_INIT;
1536 int must_list_refs = 1;
1537
1538 if (tags == TAGS_DEFAULT) {
1539 if (transport->remote->fetch_tags == 2)
1540 tags = TAGS_SET;
1541 if (transport->remote->fetch_tags == -1)
1542 tags = TAGS_UNSET;
1543 }
1544
1545 /* if not appending, truncate FETCH_HEAD */
1546 if (!append && write_fetch_head) {
1547 retcode = truncate_fetch_head();
1548 if (retcode)
1549 goto cleanup;
1550 }
1551
1552 if (rs->nr) {
1553 int i;
1554
1555 refspec_ref_prefixes(rs, &transport_ls_refs_options.ref_prefixes);
1556
1557 /*
1558 * We can avoid listing refs if all of them are exact
1559 * OIDs
1560 */
1561 must_list_refs = 0;
1562 for (i = 0; i < rs->nr; i++) {
1563 if (!rs->items[i].exact_sha1) {
1564 must_list_refs = 1;
1565 break;
1566 }
1567 }
1568 } else if (transport->remote && transport->remote->fetch.nr)
1569 refspec_ref_prefixes(&transport->remote->fetch,
1570 &transport_ls_refs_options.ref_prefixes);
1571
1572 if (tags == TAGS_SET || tags == TAGS_DEFAULT) {
1573 must_list_refs = 1;
1574 if (transport_ls_refs_options.ref_prefixes.nr)
1575 strvec_push(&transport_ls_refs_options.ref_prefixes,
1576 "refs/tags/");
1577 }
1578
1579 if (must_list_refs) {
1580 trace2_region_enter("fetch", "remote_refs", the_repository);
1581 remote_refs = transport_get_remote_refs(transport,
1582 &transport_ls_refs_options);
1583 trace2_region_leave("fetch", "remote_refs", the_repository);
1584 } else
1585 remote_refs = NULL;
1586
1587 strvec_clear(&transport_ls_refs_options.ref_prefixes);
1588
1589 ref_map = get_ref_map(transport->remote, remote_refs, rs,
1590 tags, &autotags);
1591 if (!update_head_ok)
1592 check_not_current_branch(ref_map);
1593
1594 if (tags == TAGS_DEFAULT && autotags)
1595 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1596 if (prune) {
1597 /*
1598 * We only prune based on refspecs specified
1599 * explicitly (via command line or configuration); we
1600 * don't care whether --tags was specified.
1601 */
1602 if (rs->nr) {
1603 prune_refs(rs, ref_map, transport->url);
1604 } else {
1605 prune_refs(&transport->remote->fetch,
1606 ref_map,
1607 transport->url);
1608 }
1609 }
1610 if (fetch_and_consume_refs(transport, ref_map)) {
1611 free_refs(ref_map);
1612 retcode = 1;
1613 goto cleanup;
1614 }
1615
1616 if (set_upstream) {
1617 struct branch *branch = branch_get("HEAD");
1618 struct ref *rm;
1619 struct ref *source_ref = NULL;
1620
1621 /*
1622 * We're setting the upstream configuration for the
1623 * current branch. The relevant upstream is the
1624 * fetched branch that is meant to be merged with the
1625 * current one, i.e. the one fetched to FETCH_HEAD.
1626 *
1627 * When there are several such branches, consider the
1628 * request ambiguous and err on the safe side by doing
1629 * nothing and just emit a warning.
1630 */
1631 for (rm = ref_map; rm; rm = rm->next) {
1632 if (!rm->peer_ref) {
1633 if (source_ref) {
1634 warning(_("multiple branches detected, incompatible with --set-upstream"));
1635 goto skip;
1636 } else {
1637 source_ref = rm;
1638 }
1639 }
1640 }
1641 if (source_ref) {
1642 if (!strcmp(source_ref->name, "HEAD") ||
1643 starts_with(source_ref->name, "refs/heads/"))
1644 install_branch_config(0,
1645 branch->name,
1646 transport->remote->name,
1647 source_ref->name);
1648 else if (starts_with(source_ref->name, "refs/remotes/"))
1649 warning(_("not setting upstream for a remote remote-tracking branch"));
1650 else if (starts_with(source_ref->name, "refs/tags/"))
1651 warning(_("not setting upstream for a remote tag"));
1652 else
1653 warning(_("unknown branch type"));
1654 } else {
1655 warning(_("no source branch found.\n"
1656 "you need to specify exactly one branch with the --set-upstream option."));
1657 }
1658 }
1659 skip:
1660 free_refs(ref_map);
1661
1662 /* if neither --no-tags nor --tags was specified, do automated tag
1663 * following ... */
1664 if (tags == TAGS_DEFAULT && autotags) {
1665 struct ref **tail = &ref_map;
1666 ref_map = NULL;
1667 find_non_local_tags(remote_refs, &ref_map, &tail);
1668 if (ref_map)
1669 backfill_tags(transport, ref_map);
1670 free_refs(ref_map);
1671 }
1672
1673 cleanup:
1674 return retcode;
1675 }
1676
1677 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1678 {
1679 struct string_list *list = priv;
1680 if (!remote->skip_default_update)
1681 string_list_append(list, remote->name);
1682 return 0;
1683 }
1684
1685 struct remote_group_data {
1686 const char *name;
1687 struct string_list *list;
1688 };
1689
1690 static int get_remote_group(const char *key, const char *value, void *priv)
1691 {
1692 struct remote_group_data *g = priv;
1693
1694 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1695 /* split list by white space */
1696 while (*value) {
1697 size_t wordlen = strcspn(value, " \t\n");
1698
1699 if (wordlen >= 1)
1700 string_list_append_nodup(g->list,
1701 xstrndup(value, wordlen));
1702 value += wordlen + (value[wordlen] != '\0');
1703 }
1704 }
1705
1706 return 0;
1707 }
1708
1709 static int add_remote_or_group(const char *name, struct string_list *list)
1710 {
1711 int prev_nr = list->nr;
1712 struct remote_group_data g;
1713 g.name = name; g.list = list;
1714
1715 git_config(get_remote_group, &g);
1716 if (list->nr == prev_nr) {
1717 struct remote *remote = remote_get(name);
1718 if (!remote_is_configured(remote, 0))
1719 return 0;
1720 string_list_append(list, remote->name);
1721 }
1722 return 1;
1723 }
1724
1725 static void add_options_to_argv(struct strvec *argv)
1726 {
1727 if (dry_run)
1728 strvec_push(argv, "--dry-run");
1729 if (prune != -1)
1730 strvec_push(argv, prune ? "--prune" : "--no-prune");
1731 if (prune_tags != -1)
1732 strvec_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1733 if (update_head_ok)
1734 strvec_push(argv, "--update-head-ok");
1735 if (force)
1736 strvec_push(argv, "--force");
1737 if (keep)
1738 strvec_push(argv, "--keep");
1739 if (recurse_submodules == RECURSE_SUBMODULES_ON)
1740 strvec_push(argv, "--recurse-submodules");
1741 else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1742 strvec_push(argv, "--recurse-submodules=on-demand");
1743 if (tags == TAGS_SET)
1744 strvec_push(argv, "--tags");
1745 else if (tags == TAGS_UNSET)
1746 strvec_push(argv, "--no-tags");
1747 if (verbosity >= 2)
1748 strvec_push(argv, "-v");
1749 if (verbosity >= 1)
1750 strvec_push(argv, "-v");
1751 else if (verbosity < 0)
1752 strvec_push(argv, "-q");
1753 if (family == TRANSPORT_FAMILY_IPV4)
1754 strvec_push(argv, "--ipv4");
1755 else if (family == TRANSPORT_FAMILY_IPV6)
1756 strvec_push(argv, "--ipv6");
1757 }
1758
1759 /* Fetch multiple remotes in parallel */
1760
1761 struct parallel_fetch_state {
1762 const char **argv;
1763 struct string_list *remotes;
1764 int next, result;
1765 };
1766
1767 static int fetch_next_remote(struct child_process *cp, struct strbuf *out,
1768 void *cb, void **task_cb)
1769 {
1770 struct parallel_fetch_state *state = cb;
1771 char *remote;
1772
1773 if (state->next < 0 || state->next >= state->remotes->nr)
1774 return 0;
1775
1776 remote = state->remotes->items[state->next++].string;
1777 *task_cb = remote;
1778
1779 strvec_pushv(&cp->args, state->argv);
1780 strvec_push(&cp->args, remote);
1781 cp->git_cmd = 1;
1782
1783 if (verbosity >= 0)
1784 printf(_("Fetching %s\n"), remote);
1785
1786 return 1;
1787 }
1788
1789 static int fetch_failed_to_start(struct strbuf *out, void *cb, void *task_cb)
1790 {
1791 struct parallel_fetch_state *state = cb;
1792 const char *remote = task_cb;
1793
1794 state->result = error(_("Could not fetch %s"), remote);
1795
1796 return 0;
1797 }
1798
1799 static int fetch_finished(int result, struct strbuf *out,
1800 void *cb, void *task_cb)
1801 {
1802 struct parallel_fetch_state *state = cb;
1803 const char *remote = task_cb;
1804
1805 if (result) {
1806 strbuf_addf(out, _("could not fetch '%s' (exit code: %d)\n"),
1807 remote, result);
1808 state->result = -1;
1809 }
1810
1811 return 0;
1812 }
1813
1814 static int fetch_multiple(struct string_list *list, int max_children)
1815 {
1816 int i, result = 0;
1817 struct strvec argv = STRVEC_INIT;
1818
1819 if (!append && write_fetch_head) {
1820 int errcode = truncate_fetch_head();
1821 if (errcode)
1822 return errcode;
1823 }
1824
1825 strvec_pushl(&argv, "fetch", "--append", "--no-auto-gc",
1826 "--no-write-commit-graph", NULL);
1827 add_options_to_argv(&argv);
1828
1829 if (max_children != 1 && list->nr != 1) {
1830 struct parallel_fetch_state state = { argv.v, list, 0, 0 };
1831
1832 strvec_push(&argv, "--end-of-options");
1833 result = run_processes_parallel_tr2(max_children,
1834 &fetch_next_remote,
1835 &fetch_failed_to_start,
1836 &fetch_finished,
1837 &state,
1838 "fetch", "parallel/fetch");
1839
1840 if (!result)
1841 result = state.result;
1842 } else
1843 for (i = 0; i < list->nr; i++) {
1844 const char *name = list->items[i].string;
1845 strvec_push(&argv, name);
1846 if (verbosity >= 0)
1847 printf(_("Fetching %s\n"), name);
1848 if (run_command_v_opt(argv.v, RUN_GIT_CMD)) {
1849 error(_("Could not fetch %s"), name);
1850 result = 1;
1851 }
1852 strvec_pop(&argv);
1853 }
1854
1855 strvec_clear(&argv);
1856 return !!result;
1857 }
1858
1859 /*
1860 * Fetching from the promisor remote should use the given filter-spec
1861 * or inherit the default filter-spec from the config.
1862 */
1863 static inline void fetch_one_setup_partial(struct remote *remote)
1864 {
1865 /*
1866 * Explicit --no-filter argument overrides everything, regardless
1867 * of any prior partial clones and fetches.
1868 */
1869 if (filter_options.no_filter)
1870 return;
1871
1872 /*
1873 * If no prior partial clone/fetch and the current fetch DID NOT
1874 * request a partial-fetch, do a normal fetch.
1875 */
1876 if (!has_promisor_remote() && !filter_options.choice)
1877 return;
1878
1879 /*
1880 * If this is a partial-fetch request, we enable partial on
1881 * this repo if not already enabled and remember the given
1882 * filter-spec as the default for subsequent fetches to this
1883 * remote if there is currently no default filter-spec.
1884 */
1885 if (filter_options.choice) {
1886 partial_clone_register(remote->name, &filter_options);
1887 return;
1888 }
1889
1890 /*
1891 * Do a partial-fetch from the promisor remote using either the
1892 * explicitly given filter-spec or inherit the filter-spec from
1893 * the config.
1894 */
1895 if (!filter_options.choice)
1896 partial_clone_get_default_filter_spec(&filter_options, remote->name);
1897 return;
1898 }
1899
1900 static int fetch_one(struct remote *remote, int argc, const char **argv,
1901 int prune_tags_ok, int use_stdin_refspecs)
1902 {
1903 struct refspec rs = REFSPEC_INIT_FETCH;
1904 int i;
1905 int exit_code;
1906 int maybe_prune_tags;
1907 int remote_via_config = remote_is_configured(remote, 0);
1908
1909 if (!remote)
1910 die(_("No remote repository specified. Please, specify either a URL or a\n"
1911 "remote name from which new revisions should be fetched."));
1912
1913 gtransport = prepare_transport(remote, 1);
1914
1915 if (prune < 0) {
1916 /* no command line request */
1917 if (0 <= remote->prune)
1918 prune = remote->prune;
1919 else if (0 <= fetch_prune_config)
1920 prune = fetch_prune_config;
1921 else
1922 prune = PRUNE_BY_DEFAULT;
1923 }
1924
1925 if (prune_tags < 0) {
1926 /* no command line request */
1927 if (0 <= remote->prune_tags)
1928 prune_tags = remote->prune_tags;
1929 else if (0 <= fetch_prune_tags_config)
1930 prune_tags = fetch_prune_tags_config;
1931 else
1932 prune_tags = PRUNE_TAGS_BY_DEFAULT;
1933 }
1934
1935 maybe_prune_tags = prune_tags_ok && prune_tags;
1936 if (maybe_prune_tags && remote_via_config)
1937 refspec_append(&remote->fetch, TAG_REFSPEC);
1938
1939 if (maybe_prune_tags && (argc || !remote_via_config))
1940 refspec_append(&rs, TAG_REFSPEC);
1941
1942 for (i = 0; i < argc; i++) {
1943 if (!strcmp(argv[i], "tag")) {
1944 i++;
1945 if (i >= argc)
1946 die(_("You need to specify a tag name."));
1947
1948 refspec_appendf(&rs, "refs/tags/%s:refs/tags/%s",
1949 argv[i], argv[i]);
1950 } else {
1951 refspec_append(&rs, argv[i]);
1952 }
1953 }
1954
1955 if (use_stdin_refspecs) {
1956 struct strbuf line = STRBUF_INIT;
1957 while (strbuf_getline_lf(&line, stdin) != EOF)
1958 refspec_append(&rs, line.buf);
1959 strbuf_release(&line);
1960 }
1961
1962 if (server_options.nr)
1963 gtransport->server_options = &server_options;
1964
1965 sigchain_push_common(unlock_pack_on_signal);
1966 atexit(unlock_pack);
1967 sigchain_push(SIGPIPE, SIG_IGN);
1968 exit_code = do_fetch(gtransport, &rs);
1969 sigchain_pop(SIGPIPE);
1970 refspec_clear(&rs);
1971 transport_disconnect(gtransport);
1972 gtransport = NULL;
1973 return exit_code;
1974 }
1975
1976 int cmd_fetch(int argc, const char **argv, const char *prefix)
1977 {
1978 int i;
1979 struct string_list list = STRING_LIST_INIT_DUP;
1980 struct remote *remote = NULL;
1981 int result = 0;
1982 int prune_tags_ok = 1;
1983
1984 packet_trace_identity("fetch");
1985
1986 /* Record the command line for the reflog */
1987 strbuf_addstr(&default_rla, "fetch");
1988 for (i = 1; i < argc; i++) {
1989 /* This handles non-URLs gracefully */
1990 char *anon = transport_anonymize_url(argv[i]);
1991
1992 strbuf_addf(&default_rla, " %s", anon);
1993 free(anon);
1994 }
1995
1996 git_config(git_fetch_config, NULL);
1997
1998 argc = parse_options(argc, argv, prefix,
1999 builtin_fetch_options, builtin_fetch_usage, 0);
2000
2001 if (recurse_submodules_cli != RECURSE_SUBMODULES_DEFAULT)
2002 recurse_submodules = recurse_submodules_cli;
2003
2004 if (negotiate_only) {
2005 switch (recurse_submodules_cli) {
2006 case RECURSE_SUBMODULES_OFF:
2007 case RECURSE_SUBMODULES_DEFAULT:
2008 /*
2009 * --negotiate-only should never recurse into
2010 * submodules. Skip it by setting recurse_submodules to
2011 * RECURSE_SUBMODULES_OFF.
2012 */
2013 recurse_submodules = RECURSE_SUBMODULES_OFF;
2014 break;
2015
2016 default:
2017 die(_("options '%s' and '%s' cannot be used together"),
2018 "--negotiate-only", "--recurse-submodules");
2019 }
2020 }
2021
2022 if (recurse_submodules != RECURSE_SUBMODULES_OFF) {
2023 int *sfjc = submodule_fetch_jobs_config == -1
2024 ? &submodule_fetch_jobs_config : NULL;
2025 int *rs = recurse_submodules == RECURSE_SUBMODULES_DEFAULT
2026 ? &recurse_submodules : NULL;
2027
2028 fetch_config_from_gitmodules(sfjc, rs);
2029 }
2030
2031 if (negotiate_only && !negotiation_tip.nr)
2032 die(_("--negotiate-only needs one or more --negotiate-tip=*"));
2033
2034 if (deepen_relative) {
2035 if (deepen_relative < 0)
2036 die(_("Negative depth in --deepen is not supported"));
2037 if (depth)
2038 die(_("--deepen and --depth are mutually exclusive"));
2039 depth = xstrfmt("%d", deepen_relative);
2040 }
2041 if (unshallow) {
2042 if (depth)
2043 die(_("--depth and --unshallow cannot be used together"));
2044 else if (!is_repository_shallow(the_repository))
2045 die(_("--unshallow on a complete repository does not make sense"));
2046 else
2047 depth = xstrfmt("%d", INFINITE_DEPTH);
2048 }
2049
2050 /* no need to be strict, transport_set_option() will validate it again */
2051 if (depth && atoi(depth) < 1)
2052 die(_("depth %s is not a positive number"), depth);
2053 if (depth || deepen_since || deepen_not.nr)
2054 deepen = 1;
2055
2056 /* FETCH_HEAD never gets updated in --dry-run mode */
2057 if (dry_run)
2058 write_fetch_head = 0;
2059
2060 if (all) {
2061 if (argc == 1)
2062 die(_("fetch --all does not take a repository argument"));
2063 else if (argc > 1)
2064 die(_("fetch --all does not make sense with refspecs"));
2065 (void) for_each_remote(get_one_remote_for_fetch, &list);
2066 } else if (argc == 0) {
2067 /* No arguments -- use default remote */
2068 remote = remote_get(NULL);
2069 } else if (multiple) {
2070 /* All arguments are assumed to be remotes or groups */
2071 for (i = 0; i < argc; i++)
2072 if (!add_remote_or_group(argv[i], &list))
2073 die(_("No such remote or remote group: %s"), argv[i]);
2074 } else {
2075 /* Single remote or group */
2076 (void) add_remote_or_group(argv[0], &list);
2077 if (list.nr > 1) {
2078 /* More than one remote */
2079 if (argc > 1)
2080 die(_("Fetching a group and specifying refspecs does not make sense"));
2081 } else {
2082 /* Zero or one remotes */
2083 remote = remote_get(argv[0]);
2084 prune_tags_ok = (argc == 1);
2085 argc--;
2086 argv++;
2087 }
2088 }
2089
2090 if (negotiate_only) {
2091 struct oidset acked_commits = OIDSET_INIT;
2092 struct oidset_iter iter;
2093 const struct object_id *oid;
2094
2095 if (!remote)
2096 die(_("must supply remote when using --negotiate-only"));
2097 gtransport = prepare_transport(remote, 1);
2098 if (gtransport->smart_options) {
2099 gtransport->smart_options->acked_commits = &acked_commits;
2100 } else {
2101 warning(_("Protocol does not support --negotiate-only, exiting."));
2102 result = 1;
2103 goto cleanup;
2104 }
2105 if (server_options.nr)
2106 gtransport->server_options = &server_options;
2107 result = transport_fetch_refs(gtransport, NULL);
2108
2109 oidset_iter_init(&acked_commits, &iter);
2110 while ((oid = oidset_iter_next(&iter)))
2111 printf("%s\n", oid_to_hex(oid));
2112 oidset_clear(&acked_commits);
2113 } else if (remote) {
2114 if (filter_options.choice || has_promisor_remote())
2115 fetch_one_setup_partial(remote);
2116 result = fetch_one(remote, argc, argv, prune_tags_ok, stdin_refspecs);
2117 } else {
2118 int max_children = max_jobs;
2119
2120 if (filter_options.choice)
2121 die(_("--filter can only be used with the remote "
2122 "configured in extensions.partialclone"));
2123
2124 if (atomic_fetch)
2125 die(_("--atomic can only be used when fetching "
2126 "from one remote"));
2127
2128 if (stdin_refspecs)
2129 die(_("--stdin can only be used when fetching "
2130 "from one remote"));
2131
2132 if (max_children < 0)
2133 max_children = fetch_parallel_config;
2134
2135 /* TODO should this also die if we have a previous partial-clone? */
2136 result = fetch_multiple(&list, max_children);
2137 }
2138
2139 if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
2140 struct strvec options = STRVEC_INIT;
2141 int max_children = max_jobs;
2142
2143 if (max_children < 0)
2144 max_children = submodule_fetch_jobs_config;
2145 if (max_children < 0)
2146 max_children = fetch_parallel_config;
2147
2148 add_options_to_argv(&options);
2149 result = fetch_populated_submodules(the_repository,
2150 &options,
2151 submodule_prefix,
2152 recurse_submodules,
2153 recurse_submodules_default,
2154 verbosity < 0,
2155 max_children);
2156 strvec_clear(&options);
2157 }
2158
2159 /*
2160 * Skip irrelevant tasks because we know objects were not
2161 * fetched.
2162 *
2163 * NEEDSWORK: as a future optimization, we can return early
2164 * whenever objects were not fetched e.g. if we already have all
2165 * of them.
2166 */
2167 if (negotiate_only)
2168 goto cleanup;
2169
2170 prepare_repo_settings(the_repository);
2171 if (fetch_write_commit_graph > 0 ||
2172 (fetch_write_commit_graph < 0 &&
2173 the_repository->settings.fetch_write_commit_graph)) {
2174 int commit_graph_flags = COMMIT_GRAPH_WRITE_SPLIT;
2175
2176 if (progress)
2177 commit_graph_flags |= COMMIT_GRAPH_WRITE_PROGRESS;
2178
2179 write_commit_graph_reachable(the_repository->objects->odb,
2180 commit_graph_flags,
2181 NULL);
2182 }
2183
2184 if (enable_auto_gc)
2185 run_auto_maintenance(verbosity < 0);
2186
2187 cleanup:
2188 string_list_clear(&list, 0);
2189 return result;
2190 }