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