Merge branch 'cl/rerere-train-with-no-sign'
[git/debian.git] / builtin / fetch.c
blobfc5cecb48356ffccd4251670bd779d52ab3d392c
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"
33 #define FORCED_UPDATES_DELAY_WARNING_IN_MS (10 * 1000)
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
43 enum {
44 TAGS_UNSET = 0,
45 TAGS_DEFAULT = 1,
46 TAGS_SET = 2
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? */
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? */
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, refetch;
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;
90 static int git_fetch_config(const char *k, const char *v, void *cb)
92 if (!strcmp(k, "fetch.prune")) {
93 fetch_prune_config = git_config_bool(k, v);
94 return 0;
97 if (!strcmp(k, "fetch.prunetags")) {
98 fetch_prune_tags_config = git_config_bool(k, v);
99 return 0;
102 if (!strcmp(k, "fetch.showforcedupdates")) {
103 fetch_show_forced_updates = git_config_bool(k, v);
104 return 0;
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;
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;
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;
128 return git_default_config(k, v, cb);
131 static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
133 BUG_ON_OPT_NEG(unset);
136 * "git fetch --refmap='' origin foo"
137 * can be used to tell the command not to store anywhere
139 refspec_append(&refmap, arg);
141 return 0;
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 OPT_SET_INT_F(0, "refetch", &refetch,
194 N_("re-fetch without negotiating common commits"),
195 1, PARSE_OPT_NONEG),
196 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
197 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
198 OPT_CALLBACK_F(0, "recurse-submodules-default",
199 &recurse_submodules_default, N_("on-demand"),
200 N_("default for recursive fetching of submodules "
201 "(lower priority than config files)"),
202 PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules),
203 OPT_BOOL(0, "update-shallow", &update_shallow,
204 N_("accept refs that update .git/shallow")),
205 OPT_CALLBACK_F(0, "refmap", NULL, N_("refmap"),
206 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg),
207 OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
208 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
209 TRANSPORT_FAMILY_IPV4),
210 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
211 TRANSPORT_FAMILY_IPV6),
212 OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip, N_("revision"),
213 N_("report that we have only objects reachable from this object")),
214 OPT_BOOL(0, "negotiate-only", &negotiate_only,
215 N_("do not fetch a packfile; instead, print ancestors of negotiation tips")),
216 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
217 OPT_BOOL(0, "auto-maintenance", &enable_auto_gc,
218 N_("run 'maintenance --auto' after fetching")),
219 OPT_BOOL(0, "auto-gc", &enable_auto_gc,
220 N_("run 'maintenance --auto' after fetching")),
221 OPT_BOOL(0, "show-forced-updates", &fetch_show_forced_updates,
222 N_("check for forced-updates on all updated branches")),
223 OPT_BOOL(0, "write-commit-graph", &fetch_write_commit_graph,
224 N_("write the commit-graph after fetching")),
225 OPT_BOOL(0, "stdin", &stdin_refspecs,
226 N_("accept refspecs from stdin")),
227 OPT_END()
230 static void unlock_pack(unsigned int flags)
232 if (gtransport)
233 transport_unlock_pack(gtransport, flags);
234 if (gsecondary)
235 transport_unlock_pack(gsecondary, flags);
238 static void unlock_pack_atexit(void)
240 unlock_pack(0);
243 static void unlock_pack_on_signal(int signo)
245 unlock_pack(TRANSPORT_UNLOCK_PACK_IN_SIGNAL_HANDLER);
246 sigchain_pop(signo);
247 raise(signo);
250 static void add_merge_config(struct ref **head,
251 const struct ref *remote_refs,
252 struct branch *branch,
253 struct ref ***tail)
255 int i;
257 for (i = 0; i < branch->merge_nr; i++) {
258 struct ref *rm, **old_tail = *tail;
259 struct refspec_item refspec;
261 for (rm = *head; rm; rm = rm->next) {
262 if (branch_merge_matches(branch, i, rm->name)) {
263 rm->fetch_head_status = FETCH_HEAD_MERGE;
264 break;
267 if (rm)
268 continue;
271 * Not fetched to a remote-tracking branch? We need to fetch
272 * it anyway to allow this branch's "branch.$name.merge"
273 * to be honored by 'git pull', but we do not have to
274 * fail if branch.$name.merge is misconfigured to point
275 * at a nonexisting branch. If we were indeed called by
276 * 'git pull', it will notice the misconfiguration because
277 * there is no entry in the resulting FETCH_HEAD marked
278 * for merging.
280 memset(&refspec, 0, sizeof(refspec));
281 refspec.src = branch->merge[i]->src;
282 get_fetch_map(remote_refs, &refspec, tail, 1);
283 for (rm = *old_tail; rm; rm = rm->next)
284 rm->fetch_head_status = FETCH_HEAD_MERGE;
288 static void create_fetch_oidset(struct ref **head, struct oidset *out)
290 struct ref *rm = *head;
291 while (rm) {
292 oidset_insert(out, &rm->old_oid);
293 rm = rm->next;
297 struct refname_hash_entry {
298 struct hashmap_entry ent;
299 struct object_id oid;
300 int ignore;
301 char refname[FLEX_ARRAY];
304 static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data,
305 const struct hashmap_entry *eptr,
306 const struct hashmap_entry *entry_or_key,
307 const void *keydata)
309 const struct refname_hash_entry *e1, *e2;
311 e1 = container_of(eptr, const struct refname_hash_entry, ent);
312 e2 = container_of(entry_or_key, const struct refname_hash_entry, ent);
313 return strcmp(e1->refname, keydata ? keydata : e2->refname);
316 static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
317 const char *refname,
318 const struct object_id *oid)
320 struct refname_hash_entry *ent;
321 size_t len = strlen(refname);
323 FLEX_ALLOC_MEM(ent, refname, refname, len);
324 hashmap_entry_init(&ent->ent, strhash(refname));
325 oidcpy(&ent->oid, oid);
326 hashmap_add(map, &ent->ent);
327 return ent;
330 static int add_one_refname(const char *refname,
331 const struct object_id *oid,
332 int flag, void *cbdata)
334 struct hashmap *refname_map = cbdata;
336 (void) refname_hash_add(refname_map, refname, oid);
337 return 0;
340 static void refname_hash_init(struct hashmap *map)
342 hashmap_init(map, refname_hash_entry_cmp, NULL, 0);
345 static int refname_hash_exists(struct hashmap *map, const char *refname)
347 return !!hashmap_get_from_hash(map, strhash(refname), refname);
350 static void clear_item(struct refname_hash_entry *item)
352 item->ignore = 1;
356 static void add_already_queued_tags(const char *refname,
357 const struct object_id *old_oid,
358 const struct object_id *new_oid,
359 void *cb_data)
361 struct hashmap *queued_tags = cb_data;
362 if (starts_with(refname, "refs/tags/") && new_oid)
363 (void) refname_hash_add(queued_tags, refname, new_oid);
366 static void find_non_local_tags(const struct ref *refs,
367 struct ref_transaction *transaction,
368 struct ref **head,
369 struct ref ***tail)
371 struct hashmap existing_refs;
372 struct hashmap remote_refs;
373 struct oidset fetch_oids = OIDSET_INIT;
374 struct string_list remote_refs_list = STRING_LIST_INIT_NODUP;
375 struct string_list_item *remote_ref_item;
376 const struct ref *ref;
377 struct refname_hash_entry *item = NULL;
378 const int quick_flags = OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT;
380 refname_hash_init(&existing_refs);
381 refname_hash_init(&remote_refs);
382 create_fetch_oidset(head, &fetch_oids);
384 for_each_ref(add_one_refname, &existing_refs);
387 * If we already have a transaction, then we need to filter out all
388 * tags which have already been queued up.
390 if (transaction)
391 ref_transaction_for_each_queued_update(transaction,
392 add_already_queued_tags,
393 &existing_refs);
395 for (ref = refs; ref; ref = ref->next) {
396 if (!starts_with(ref->name, "refs/tags/"))
397 continue;
400 * The peeled ref always follows the matching base
401 * ref, so if we see a peeled ref that we don't want
402 * to fetch then we can mark the ref entry in the list
403 * as one to ignore by setting util to NULL.
405 if (ends_with(ref->name, "^{}")) {
406 if (item &&
407 !has_object_file_with_flags(&ref->old_oid, quick_flags) &&
408 !oidset_contains(&fetch_oids, &ref->old_oid) &&
409 !has_object_file_with_flags(&item->oid, quick_flags) &&
410 !oidset_contains(&fetch_oids, &item->oid))
411 clear_item(item);
412 item = NULL;
413 continue;
417 * If item is non-NULL here, then we previously saw a
418 * ref not followed by a peeled reference, so we need
419 * to check if it is a lightweight tag that we want to
420 * fetch.
422 if (item &&
423 !has_object_file_with_flags(&item->oid, quick_flags) &&
424 !oidset_contains(&fetch_oids, &item->oid))
425 clear_item(item);
427 item = NULL;
429 /* skip duplicates and refs that we already have */
430 if (refname_hash_exists(&remote_refs, ref->name) ||
431 refname_hash_exists(&existing_refs, ref->name))
432 continue;
434 item = refname_hash_add(&remote_refs, ref->name, &ref->old_oid);
435 string_list_insert(&remote_refs_list, ref->name);
437 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
440 * We may have a final lightweight tag that needs to be
441 * checked to see if it needs fetching.
443 if (item &&
444 !has_object_file_with_flags(&item->oid, quick_flags) &&
445 !oidset_contains(&fetch_oids, &item->oid))
446 clear_item(item);
449 * For all the tags in the remote_refs_list,
450 * add them to the list of refs to be fetched
452 for_each_string_list_item(remote_ref_item, &remote_refs_list) {
453 const char *refname = remote_ref_item->string;
454 struct ref *rm;
455 unsigned int hash = strhash(refname);
457 item = hashmap_get_entry_from_hash(&remote_refs, hash, refname,
458 struct refname_hash_entry, ent);
459 if (!item)
460 BUG("unseen remote ref?");
462 /* Unless we have already decided to ignore this item... */
463 if (item->ignore)
464 continue;
466 rm = alloc_ref(item->refname);
467 rm->peer_ref = alloc_ref(item->refname);
468 oidcpy(&rm->old_oid, &item->oid);
469 **tail = rm;
470 *tail = &rm->next;
472 hashmap_clear_and_free(&remote_refs, struct refname_hash_entry, ent);
473 string_list_clear(&remote_refs_list, 0);
474 oidset_clear(&fetch_oids);
477 static void filter_prefetch_refspec(struct refspec *rs)
479 int i;
481 if (!prefetch)
482 return;
484 for (i = 0; i < rs->nr; i++) {
485 struct strbuf new_dst = STRBUF_INIT;
486 char *old_dst;
487 const char *sub = NULL;
489 if (rs->items[i].negative)
490 continue;
491 if (!rs->items[i].dst ||
492 (rs->items[i].src &&
493 !strncmp(rs->items[i].src, "refs/tags/", 10))) {
494 int j;
496 free(rs->items[i].src);
497 free(rs->items[i].dst);
499 for (j = i + 1; j < rs->nr; j++) {
500 rs->items[j - 1] = rs->items[j];
501 rs->raw[j - 1] = rs->raw[j];
503 rs->nr--;
504 i--;
505 continue;
508 old_dst = rs->items[i].dst;
509 strbuf_addstr(&new_dst, "refs/prefetch/");
512 * If old_dst starts with "refs/", then place
513 * sub after that prefix. Otherwise, start at
514 * the beginning of the string.
516 if (!skip_prefix(old_dst, "refs/", &sub))
517 sub = old_dst;
518 strbuf_addstr(&new_dst, sub);
520 rs->items[i].dst = strbuf_detach(&new_dst, NULL);
521 rs->items[i].force = 1;
523 free(old_dst);
527 static struct ref *get_ref_map(struct remote *remote,
528 const struct ref *remote_refs,
529 struct refspec *rs,
530 int tags, int *autotags)
532 int i;
533 struct ref *rm;
534 struct ref *ref_map = NULL;
535 struct ref **tail = &ref_map;
537 /* opportunistically-updated references: */
538 struct ref *orefs = NULL, **oref_tail = &orefs;
540 struct hashmap existing_refs;
541 int existing_refs_populated = 0;
543 filter_prefetch_refspec(rs);
544 if (remote)
545 filter_prefetch_refspec(&remote->fetch);
547 if (rs->nr) {
548 struct refspec *fetch_refspec;
550 for (i = 0; i < rs->nr; i++) {
551 get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
552 if (rs->items[i].dst && rs->items[i].dst[0])
553 *autotags = 1;
555 /* Merge everything on the command line (but not --tags) */
556 for (rm = ref_map; rm; rm = rm->next)
557 rm->fetch_head_status = FETCH_HEAD_MERGE;
560 * For any refs that we happen to be fetching via
561 * command-line arguments, the destination ref might
562 * have been missing or have been different than the
563 * remote-tracking ref that would be derived from the
564 * configured refspec. In these cases, we want to
565 * take the opportunity to update their configured
566 * remote-tracking reference. However, we do not want
567 * to mention these entries in FETCH_HEAD at all, as
568 * they would simply be duplicates of existing
569 * entries, so we set them FETCH_HEAD_IGNORE below.
571 * We compute these entries now, based only on the
572 * refspecs specified on the command line. But we add
573 * them to the list following the refspecs resulting
574 * from the tags option so that one of the latter,
575 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
576 * by ref_remove_duplicates() in favor of one of these
577 * opportunistic entries with FETCH_HEAD_IGNORE.
579 if (refmap.nr)
580 fetch_refspec = &refmap;
581 else
582 fetch_refspec = &remote->fetch;
584 for (i = 0; i < fetch_refspec->nr; i++)
585 get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
586 } else if (refmap.nr) {
587 die("--refmap option is only meaningful with command-line refspec(s)");
588 } else {
589 /* Use the defaults */
590 struct branch *branch = branch_get(NULL);
591 int has_merge = branch_has_merge_config(branch);
592 if (remote &&
593 (remote->fetch.nr ||
594 /* Note: has_merge implies non-NULL branch->remote_name */
595 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
596 for (i = 0; i < remote->fetch.nr; i++) {
597 get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
598 if (remote->fetch.items[i].dst &&
599 remote->fetch.items[i].dst[0])
600 *autotags = 1;
601 if (!i && !has_merge && ref_map &&
602 !remote->fetch.items[0].pattern)
603 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
606 * if the remote we're fetching from is the same
607 * as given in branch.<name>.remote, we add the
608 * ref given in branch.<name>.merge, too.
610 * Note: has_merge implies non-NULL branch->remote_name
612 if (has_merge &&
613 !strcmp(branch->remote_name, remote->name))
614 add_merge_config(&ref_map, remote_refs, branch, &tail);
615 } else if (!prefetch) {
616 ref_map = get_remote_ref(remote_refs, "HEAD");
617 if (!ref_map)
618 die(_("couldn't find remote ref HEAD"));
619 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
620 tail = &ref_map->next;
624 if (tags == TAGS_SET)
625 /* also fetch all tags */
626 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
627 else if (tags == TAGS_DEFAULT && *autotags)
628 find_non_local_tags(remote_refs, NULL, &ref_map, &tail);
630 /* Now append any refs to be updated opportunistically: */
631 *tail = orefs;
632 for (rm = orefs; rm; rm = rm->next) {
633 rm->fetch_head_status = FETCH_HEAD_IGNORE;
634 tail = &rm->next;
638 * apply negative refspecs first, before we remove duplicates. This is
639 * necessary as negative refspecs might remove an otherwise conflicting
640 * duplicate.
642 if (rs->nr)
643 ref_map = apply_negative_refspecs(ref_map, rs);
644 else
645 ref_map = apply_negative_refspecs(ref_map, &remote->fetch);
647 ref_map = ref_remove_duplicates(ref_map);
649 for (rm = ref_map; rm; rm = rm->next) {
650 if (rm->peer_ref) {
651 const char *refname = rm->peer_ref->name;
652 struct refname_hash_entry *peer_item;
653 unsigned int hash = strhash(refname);
655 if (!existing_refs_populated) {
656 refname_hash_init(&existing_refs);
657 for_each_ref(add_one_refname, &existing_refs);
658 existing_refs_populated = 1;
661 peer_item = hashmap_get_entry_from_hash(&existing_refs,
662 hash, refname,
663 struct refname_hash_entry, ent);
664 if (peer_item) {
665 struct object_id *old_oid = &peer_item->oid;
666 oidcpy(&rm->peer_ref->old_oid, old_oid);
670 if (existing_refs_populated)
671 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
673 return ref_map;
676 #define STORE_REF_ERROR_OTHER 1
677 #define STORE_REF_ERROR_DF_CONFLICT 2
679 static int s_update_ref(const char *action,
680 struct ref *ref,
681 struct ref_transaction *transaction,
682 int check_old)
684 char *msg;
685 char *rla = getenv("GIT_REFLOG_ACTION");
686 struct ref_transaction *our_transaction = NULL;
687 struct strbuf err = STRBUF_INIT;
688 int ret;
690 if (dry_run)
691 return 0;
692 if (!rla)
693 rla = default_rla.buf;
694 msg = xstrfmt("%s: %s", rla, action);
697 * If no transaction was passed to us, we manage the transaction
698 * ourselves. Otherwise, we trust the caller to handle the transaction
699 * lifecycle.
701 if (!transaction) {
702 transaction = our_transaction = ref_transaction_begin(&err);
703 if (!transaction) {
704 ret = STORE_REF_ERROR_OTHER;
705 goto out;
709 ret = ref_transaction_update(transaction, ref->name, &ref->new_oid,
710 check_old ? &ref->old_oid : NULL,
711 0, msg, &err);
712 if (ret) {
713 ret = STORE_REF_ERROR_OTHER;
714 goto out;
717 if (our_transaction) {
718 switch (ref_transaction_commit(our_transaction, &err)) {
719 case 0:
720 break;
721 case TRANSACTION_NAME_CONFLICT:
722 ret = STORE_REF_ERROR_DF_CONFLICT;
723 goto out;
724 default:
725 ret = STORE_REF_ERROR_OTHER;
726 goto out;
730 out:
731 ref_transaction_free(our_transaction);
732 if (ret)
733 error("%s", err.buf);
734 strbuf_release(&err);
735 free(msg);
736 return ret;
739 static int refcol_width = 10;
740 static int compact_format;
742 static void adjust_refcol_width(const struct ref *ref)
744 int max, rlen, llen, len;
746 /* uptodate lines are only shown on high verbosity level */
747 if (verbosity <= 0 && oideq(&ref->peer_ref->old_oid, &ref->old_oid))
748 return;
750 max = term_columns();
751 rlen = utf8_strwidth(prettify_refname(ref->name));
753 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
756 * rough estimation to see if the output line is too long and
757 * should not be counted (we can't do precise calculation
758 * anyway because we don't know if the error explanation part
759 * will be printed in update_local_ref)
761 if (compact_format) {
762 llen = 0;
763 max = max * 2 / 3;
765 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
766 if (len >= max)
767 return;
770 * Not precise calculation for compact mode because '*' can
771 * appear on the left hand side of '->' and shrink the column
772 * back.
774 if (refcol_width < rlen)
775 refcol_width = rlen;
778 static void prepare_format_display(struct ref *ref_map)
780 struct ref *rm;
781 const char *format = "full";
783 if (verbosity < 0)
784 return;
786 git_config_get_string_tmp("fetch.output", &format);
787 if (!strcasecmp(format, "full"))
788 compact_format = 0;
789 else if (!strcasecmp(format, "compact"))
790 compact_format = 1;
791 else
792 die(_("invalid value for '%s': '%s'"),
793 "fetch.output", format);
795 for (rm = ref_map; rm; rm = rm->next) {
796 if (rm->status == REF_STATUS_REJECT_SHALLOW ||
797 !rm->peer_ref ||
798 !strcmp(rm->name, "HEAD"))
799 continue;
801 adjust_refcol_width(rm);
805 static void print_remote_to_local(struct strbuf *display,
806 const char *remote, const char *local)
808 strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
811 static int find_and_replace(struct strbuf *haystack,
812 const char *needle,
813 const char *placeholder)
815 const char *p = NULL;
816 int plen, nlen;
818 nlen = strlen(needle);
819 if (ends_with(haystack->buf, needle))
820 p = haystack->buf + haystack->len - nlen;
821 else
822 p = strstr(haystack->buf, needle);
823 if (!p)
824 return 0;
826 if (p > haystack->buf && p[-1] != '/')
827 return 0;
829 plen = strlen(p);
830 if (plen > nlen && p[nlen] != '/')
831 return 0;
833 strbuf_splice(haystack, p - haystack->buf, nlen,
834 placeholder, strlen(placeholder));
835 return 1;
838 static void print_compact(struct strbuf *display,
839 const char *remote, const char *local)
841 struct strbuf r = STRBUF_INIT;
842 struct strbuf l = STRBUF_INIT;
844 if (!strcmp(remote, local)) {
845 strbuf_addf(display, "%-*s -> *", refcol_width, remote);
846 return;
849 strbuf_addstr(&r, remote);
850 strbuf_addstr(&l, local);
852 if (!find_and_replace(&r, local, "*"))
853 find_and_replace(&l, remote, "*");
854 print_remote_to_local(display, r.buf, l.buf);
856 strbuf_release(&r);
857 strbuf_release(&l);
860 static void format_display(struct strbuf *display, char code,
861 const char *summary, const char *error,
862 const char *remote, const char *local,
863 int summary_width)
865 int width;
867 if (verbosity < 0)
868 return;
870 width = (summary_width + strlen(summary) - gettext_width(summary));
872 strbuf_addf(display, "%c %-*s ", code, width, summary);
873 if (!compact_format)
874 print_remote_to_local(display, remote, local);
875 else
876 print_compact(display, remote, local);
877 if (error)
878 strbuf_addf(display, " (%s)", error);
881 static int update_local_ref(struct ref *ref,
882 struct ref_transaction *transaction,
883 const char *remote, const struct ref *remote_ref,
884 struct strbuf *display, int summary_width)
886 struct commit *current = NULL, *updated;
887 const char *pretty_ref = prettify_refname(ref->name);
888 int fast_forward = 0;
890 if (!repo_has_object_file(the_repository, &ref->new_oid))
891 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
893 if (oideq(&ref->old_oid, &ref->new_oid)) {
894 if (verbosity > 0)
895 format_display(display, '=', _("[up to date]"), NULL,
896 remote, pretty_ref, summary_width);
897 return 0;
900 if (!update_head_ok &&
901 !is_null_oid(&ref->old_oid) &&
902 branch_checked_out(ref->name)) {
904 * If this is the head, and it's not okay to update
905 * the head, and the old value of the head isn't empty...
907 format_display(display, '!', _("[rejected]"),
908 _("can't fetch into checked-out branch"),
909 remote, pretty_ref, summary_width);
910 return 1;
913 if (!is_null_oid(&ref->old_oid) &&
914 starts_with(ref->name, "refs/tags/")) {
915 if (force || ref->force) {
916 int r;
917 r = s_update_ref("updating tag", ref, transaction, 0);
918 format_display(display, r ? '!' : 't', _("[tag update]"),
919 r ? _("unable to update local ref") : NULL,
920 remote, pretty_ref, summary_width);
921 return r;
922 } else {
923 format_display(display, '!', _("[rejected]"), _("would clobber existing tag"),
924 remote, pretty_ref, summary_width);
925 return 1;
929 current = lookup_commit_reference_gently(the_repository,
930 &ref->old_oid, 1);
931 updated = lookup_commit_reference_gently(the_repository,
932 &ref->new_oid, 1);
933 if (!current || !updated) {
934 const char *msg;
935 const char *what;
936 int r;
938 * Nicely describe the new ref we're fetching.
939 * Base this on the remote's ref name, as it's
940 * more likely to follow a standard layout.
942 const char *name = remote_ref ? remote_ref->name : "";
943 if (starts_with(name, "refs/tags/")) {
944 msg = "storing tag";
945 what = _("[new tag]");
946 } else if (starts_with(name, "refs/heads/")) {
947 msg = "storing head";
948 what = _("[new branch]");
949 } else {
950 msg = "storing ref";
951 what = _("[new ref]");
954 r = s_update_ref(msg, ref, transaction, 0);
955 format_display(display, r ? '!' : '*', what,
956 r ? _("unable to update local ref") : NULL,
957 remote, pretty_ref, summary_width);
958 return r;
961 if (fetch_show_forced_updates) {
962 uint64_t t_before = getnanotime();
963 fast_forward = in_merge_bases(current, updated);
964 forced_updates_ms += (getnanotime() - t_before) / 1000000;
965 } else {
966 fast_forward = 1;
969 if (fast_forward) {
970 struct strbuf quickref = STRBUF_INIT;
971 int r;
973 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
974 strbuf_addstr(&quickref, "..");
975 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
976 r = s_update_ref("fast-forward", ref, transaction, 1);
977 format_display(display, r ? '!' : ' ', quickref.buf,
978 r ? _("unable to update local ref") : NULL,
979 remote, pretty_ref, summary_width);
980 strbuf_release(&quickref);
981 return r;
982 } else if (force || ref->force) {
983 struct strbuf quickref = STRBUF_INIT;
984 int r;
985 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
986 strbuf_addstr(&quickref, "...");
987 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
988 r = s_update_ref("forced-update", ref, transaction, 1);
989 format_display(display, r ? '!' : '+', quickref.buf,
990 r ? _("unable to update local ref") : _("forced update"),
991 remote, pretty_ref, summary_width);
992 strbuf_release(&quickref);
993 return r;
994 } else {
995 format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
996 remote, pretty_ref, summary_width);
997 return 1;
1001 static const struct object_id *iterate_ref_map(void *cb_data)
1003 struct ref **rm = cb_data;
1004 struct ref *ref = *rm;
1006 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
1007 ref = ref->next;
1008 if (!ref)
1009 return NULL;
1010 *rm = ref->next;
1011 return &ref->old_oid;
1014 struct fetch_head {
1015 FILE *fp;
1016 struct strbuf buf;
1019 static int open_fetch_head(struct fetch_head *fetch_head)
1021 const char *filename = git_path_fetch_head(the_repository);
1023 if (write_fetch_head) {
1024 fetch_head->fp = fopen(filename, "a");
1025 if (!fetch_head->fp)
1026 return error_errno(_("cannot open '%s'"), filename);
1027 strbuf_init(&fetch_head->buf, 0);
1028 } else {
1029 fetch_head->fp = NULL;
1032 return 0;
1035 static void append_fetch_head(struct fetch_head *fetch_head,
1036 const struct object_id *old_oid,
1037 enum fetch_head_status fetch_head_status,
1038 const char *note,
1039 const char *url, size_t url_len)
1041 char old_oid_hex[GIT_MAX_HEXSZ + 1];
1042 const char *merge_status_marker;
1043 size_t i;
1045 if (!fetch_head->fp)
1046 return;
1048 switch (fetch_head_status) {
1049 case FETCH_HEAD_NOT_FOR_MERGE:
1050 merge_status_marker = "not-for-merge";
1051 break;
1052 case FETCH_HEAD_MERGE:
1053 merge_status_marker = "";
1054 break;
1055 default:
1056 /* do not write anything to FETCH_HEAD */
1057 return;
1060 strbuf_addf(&fetch_head->buf, "%s\t%s\t%s",
1061 oid_to_hex_r(old_oid_hex, old_oid), merge_status_marker, note);
1062 for (i = 0; i < url_len; ++i)
1063 if ('\n' == url[i])
1064 strbuf_addstr(&fetch_head->buf, "\\n");
1065 else
1066 strbuf_addch(&fetch_head->buf, url[i]);
1067 strbuf_addch(&fetch_head->buf, '\n');
1070 * When using an atomic fetch, we do not want to update FETCH_HEAD if
1071 * any of the reference updates fails. We thus have to write all
1072 * updates to a buffer first and only commit it as soon as all
1073 * references have been successfully updated.
1075 if (!atomic_fetch) {
1076 strbuf_write(&fetch_head->buf, fetch_head->fp);
1077 strbuf_reset(&fetch_head->buf);
1081 static void commit_fetch_head(struct fetch_head *fetch_head)
1083 if (!fetch_head->fp || !atomic_fetch)
1084 return;
1085 strbuf_write(&fetch_head->buf, fetch_head->fp);
1088 static void close_fetch_head(struct fetch_head *fetch_head)
1090 if (!fetch_head->fp)
1091 return;
1093 fclose(fetch_head->fp);
1094 strbuf_release(&fetch_head->buf);
1097 static const char warn_show_forced_updates[] =
1098 N_("fetch normally indicates which branches had a forced update,\n"
1099 "but that check has been disabled; to re-enable, use '--show-forced-updates'\n"
1100 "flag or run 'git config fetch.showForcedUpdates true'");
1101 static const char warn_time_show_forced_updates[] =
1102 N_("it took %.2f seconds to check forced updates; you can use\n"
1103 "'--no-show-forced-updates' or run 'git config fetch.showForcedUpdates false'\n"
1104 "to avoid this check\n");
1106 static int store_updated_refs(const char *raw_url, const char *remote_name,
1107 int connectivity_checked,
1108 struct ref_transaction *transaction, struct ref *ref_map,
1109 struct fetch_head *fetch_head)
1111 int url_len, i, rc = 0;
1112 struct strbuf note = STRBUF_INIT;
1113 const char *what, *kind;
1114 struct ref *rm;
1115 char *url;
1116 int want_status;
1117 int summary_width = 0;
1119 if (verbosity >= 0)
1120 summary_width = transport_summary_width(ref_map);
1122 if (raw_url)
1123 url = transport_anonymize_url(raw_url);
1124 else
1125 url = xstrdup("foreign");
1127 if (!connectivity_checked) {
1128 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1130 rm = ref_map;
1131 if (check_connected(iterate_ref_map, &rm, &opt)) {
1132 rc = error(_("%s did not send all necessary objects\n"), url);
1133 goto abort;
1137 prepare_format_display(ref_map);
1140 * We do a pass for each fetch_head_status type in their enum order, so
1141 * merged entries are written before not-for-merge. That lets readers
1142 * use FETCH_HEAD as a refname to refer to the ref to be merged.
1144 for (want_status = FETCH_HEAD_MERGE;
1145 want_status <= FETCH_HEAD_IGNORE;
1146 want_status++) {
1147 for (rm = ref_map; rm; rm = rm->next) {
1148 struct ref *ref = NULL;
1150 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
1151 if (want_status == FETCH_HEAD_MERGE)
1152 warning(_("rejected %s because shallow roots are not allowed to be updated"),
1153 rm->peer_ref ? rm->peer_ref->name : rm->name);
1154 continue;
1158 * When writing FETCH_HEAD we need to determine whether
1159 * we already have the commit or not. If not, then the
1160 * reference is not for merge and needs to be written
1161 * to the reflog after other commits which we already
1162 * have. We're not interested in this property though
1163 * in case FETCH_HEAD is not to be updated, so we can
1164 * skip the classification in that case.
1166 if (fetch_head->fp) {
1167 struct commit *commit = NULL;
1170 * References in "refs/tags/" are often going to point
1171 * to annotated tags, which are not part of the
1172 * commit-graph. We thus only try to look up refs in
1173 * the graph which are not in that namespace to not
1174 * regress performance in repositories with many
1175 * annotated tags.
1177 if (!starts_with(rm->name, "refs/tags/"))
1178 commit = lookup_commit_in_graph(the_repository, &rm->old_oid);
1179 if (!commit) {
1180 commit = lookup_commit_reference_gently(the_repository,
1181 &rm->old_oid,
1183 if (!commit)
1184 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
1188 if (rm->fetch_head_status != want_status)
1189 continue;
1191 if (rm->peer_ref) {
1192 ref = alloc_ref(rm->peer_ref->name);
1193 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
1194 oidcpy(&ref->new_oid, &rm->old_oid);
1195 ref->force = rm->peer_ref->force;
1198 if (recurse_submodules != RECURSE_SUBMODULES_OFF &&
1199 (!rm->peer_ref || !oideq(&ref->old_oid, &ref->new_oid))) {
1200 check_for_new_submodule_commits(&rm->old_oid);
1203 if (!strcmp(rm->name, "HEAD")) {
1204 kind = "";
1205 what = "";
1207 else if (skip_prefix(rm->name, "refs/heads/", &what))
1208 kind = "branch";
1209 else if (skip_prefix(rm->name, "refs/tags/", &what))
1210 kind = "tag";
1211 else if (skip_prefix(rm->name, "refs/remotes/", &what))
1212 kind = "remote-tracking branch";
1213 else {
1214 kind = "";
1215 what = rm->name;
1218 url_len = strlen(url);
1219 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1221 url_len = i + 1;
1222 if (4 < i && !strncmp(".git", url + i - 3, 4))
1223 url_len = i - 3;
1225 strbuf_reset(&note);
1226 if (*what) {
1227 if (*kind)
1228 strbuf_addf(&note, "%s ", kind);
1229 strbuf_addf(&note, "'%s' of ", what);
1232 append_fetch_head(fetch_head, &rm->old_oid,
1233 rm->fetch_head_status,
1234 note.buf, url, url_len);
1236 strbuf_reset(&note);
1237 if (ref) {
1238 rc |= update_local_ref(ref, transaction, what,
1239 rm, &note, summary_width);
1240 free(ref);
1241 } else if (write_fetch_head || dry_run) {
1243 * Display fetches written to FETCH_HEAD (or
1244 * would be written to FETCH_HEAD, if --dry-run
1245 * is set).
1247 format_display(&note, '*',
1248 *kind ? kind : "branch", NULL,
1249 *what ? what : "HEAD",
1250 "FETCH_HEAD", summary_width);
1252 if (note.len) {
1253 if (!shown_url) {
1254 fprintf(stderr, _("From %.*s\n"),
1255 url_len, url);
1256 shown_url = 1;
1258 fprintf(stderr, " %s\n", note.buf);
1263 if (rc & STORE_REF_ERROR_DF_CONFLICT)
1264 error(_("some local refs could not be updated; try running\n"
1265 " 'git remote prune %s' to remove any old, conflicting "
1266 "branches"), remote_name);
1268 if (advice_enabled(ADVICE_FETCH_SHOW_FORCED_UPDATES)) {
1269 if (!fetch_show_forced_updates) {
1270 warning(_(warn_show_forced_updates));
1271 } else if (forced_updates_ms > FORCED_UPDATES_DELAY_WARNING_IN_MS) {
1272 warning(_(warn_time_show_forced_updates),
1273 forced_updates_ms / 1000.0);
1277 abort:
1278 strbuf_release(&note);
1279 free(url);
1280 return rc;
1284 * We would want to bypass the object transfer altogether if
1285 * everything we are going to fetch already exists and is connected
1286 * locally.
1288 static int check_exist_and_connected(struct ref *ref_map)
1290 struct ref *rm = ref_map;
1291 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1292 struct ref *r;
1295 * If we are deepening a shallow clone we already have these
1296 * objects reachable. Running rev-list here will return with
1297 * a good (0) exit status and we'll bypass the fetch that we
1298 * really need to perform. Claiming failure now will ensure
1299 * we perform the network exchange to deepen our history.
1301 if (deepen)
1302 return -1;
1305 * Similarly, if we need to refetch, we always want to perform a full
1306 * fetch ignoring existing objects.
1308 if (refetch)
1309 return -1;
1313 * check_connected() allows objects to merely be promised, but
1314 * we need all direct targets to exist.
1316 for (r = rm; r; r = r->next) {
1317 if (!has_object_file_with_flags(&r->old_oid,
1318 OBJECT_INFO_SKIP_FETCH_OBJECT))
1319 return -1;
1322 opt.quiet = 1;
1323 return check_connected(iterate_ref_map, &rm, &opt);
1326 static int fetch_and_consume_refs(struct transport *transport,
1327 struct ref_transaction *transaction,
1328 struct ref *ref_map,
1329 struct fetch_head *fetch_head)
1331 int connectivity_checked = 1;
1332 int ret;
1335 * We don't need to perform a fetch in case we can already satisfy all
1336 * refs.
1338 ret = check_exist_and_connected(ref_map);
1339 if (ret) {
1340 trace2_region_enter("fetch", "fetch_refs", the_repository);
1341 ret = transport_fetch_refs(transport, ref_map);
1342 trace2_region_leave("fetch", "fetch_refs", the_repository);
1343 if (ret)
1344 goto out;
1345 connectivity_checked = transport->smart_options ?
1346 transport->smart_options->connectivity_checked : 0;
1349 trace2_region_enter("fetch", "consume_refs", the_repository);
1350 ret = store_updated_refs(transport->url, transport->remote->name,
1351 connectivity_checked, transaction, ref_map,
1352 fetch_head);
1353 trace2_region_leave("fetch", "consume_refs", the_repository);
1355 out:
1356 transport_unlock_pack(transport, 0);
1357 return ret;
1360 static int prune_refs(struct refspec *rs,
1361 struct ref_transaction *transaction,
1362 struct ref *ref_map,
1363 const char *raw_url)
1365 int url_len, i, result = 0;
1366 struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
1367 struct strbuf err = STRBUF_INIT;
1368 char *url;
1369 const char *dangling_msg = dry_run
1370 ? _(" (%s will become dangling)")
1371 : _(" (%s has become dangling)");
1373 if (raw_url)
1374 url = transport_anonymize_url(raw_url);
1375 else
1376 url = xstrdup("foreign");
1378 url_len = strlen(url);
1379 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1382 url_len = i + 1;
1383 if (4 < i && !strncmp(".git", url + i - 3, 4))
1384 url_len = i - 3;
1386 if (!dry_run) {
1387 if (transaction) {
1388 for (ref = stale_refs; ref; ref = ref->next) {
1389 result = ref_transaction_delete(transaction, ref->name, NULL, 0,
1390 "fetch: prune", &err);
1391 if (result)
1392 goto cleanup;
1394 } else {
1395 struct string_list refnames = STRING_LIST_INIT_NODUP;
1397 for (ref = stale_refs; ref; ref = ref->next)
1398 string_list_append(&refnames, ref->name);
1400 result = delete_refs("fetch: prune", &refnames, 0);
1401 string_list_clear(&refnames, 0);
1405 if (verbosity >= 0) {
1406 int summary_width = transport_summary_width(stale_refs);
1408 for (ref = stale_refs; ref; ref = ref->next) {
1409 struct strbuf sb = STRBUF_INIT;
1410 if (!shown_url) {
1411 fprintf(stderr, _("From %.*s\n"), url_len, url);
1412 shown_url = 1;
1414 format_display(&sb, '-', _("[deleted]"), NULL,
1415 _("(none)"), prettify_refname(ref->name),
1416 summary_width);
1417 fprintf(stderr, " %s\n",sb.buf);
1418 strbuf_release(&sb);
1419 warn_dangling_symref(stderr, dangling_msg, ref->name);
1423 cleanup:
1424 strbuf_release(&err);
1425 free(url);
1426 free_refs(stale_refs);
1427 return result;
1430 static void check_not_current_branch(struct ref *ref_map)
1432 const char *path;
1433 for (; ref_map; ref_map = ref_map->next)
1434 if (ref_map->peer_ref &&
1435 starts_with(ref_map->peer_ref->name, "refs/heads/") &&
1436 (path = branch_checked_out(ref_map->peer_ref->name)))
1437 die(_("refusing to fetch into branch '%s' "
1438 "checked out at '%s'"),
1439 ref_map->peer_ref->name, path);
1442 static int truncate_fetch_head(void)
1444 const char *filename = git_path_fetch_head(the_repository);
1445 FILE *fp = fopen_for_writing(filename);
1447 if (!fp)
1448 return error_errno(_("cannot open '%s'"), filename);
1449 fclose(fp);
1450 return 0;
1453 static void set_option(struct transport *transport, const char *name, const char *value)
1455 int r = transport_set_option(transport, name, value);
1456 if (r < 0)
1457 die(_("option \"%s\" value \"%s\" is not valid for %s"),
1458 name, value, transport->url);
1459 if (r > 0)
1460 warning(_("option \"%s\" is ignored for %s\n"),
1461 name, transport->url);
1465 static int add_oid(const char *refname, const struct object_id *oid, int flags,
1466 void *cb_data)
1468 struct oid_array *oids = cb_data;
1470 oid_array_append(oids, oid);
1471 return 0;
1474 static void add_negotiation_tips(struct git_transport_options *smart_options)
1476 struct oid_array *oids = xcalloc(1, sizeof(*oids));
1477 int i;
1479 for (i = 0; i < negotiation_tip.nr; i++) {
1480 const char *s = negotiation_tip.items[i].string;
1481 int old_nr;
1482 if (!has_glob_specials(s)) {
1483 struct object_id oid;
1484 if (get_oid(s, &oid))
1485 die(_("%s is not a valid object"), s);
1486 if (!has_object(the_repository, &oid, 0))
1487 die(_("the object %s does not exist"), s);
1488 oid_array_append(oids, &oid);
1489 continue;
1491 old_nr = oids->nr;
1492 for_each_glob_ref(add_oid, s, oids);
1493 if (old_nr == oids->nr)
1494 warning("ignoring --negotiation-tip=%s because it does not match any refs",
1497 smart_options->negotiation_tips = oids;
1500 static struct transport *prepare_transport(struct remote *remote, int deepen)
1502 struct transport *transport;
1504 transport = transport_get(remote, NULL);
1505 transport_set_verbosity(transport, verbosity, progress);
1506 transport->family = family;
1507 if (upload_pack)
1508 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1509 if (keep)
1510 set_option(transport, TRANS_OPT_KEEP, "yes");
1511 if (depth)
1512 set_option(transport, TRANS_OPT_DEPTH, depth);
1513 if (deepen && deepen_since)
1514 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1515 if (deepen && deepen_not.nr)
1516 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1517 (const char *)&deepen_not);
1518 if (deepen_relative)
1519 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1520 if (update_shallow)
1521 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1522 if (refetch)
1523 set_option(transport, TRANS_OPT_REFETCH, "yes");
1524 if (filter_options.choice) {
1525 const char *spec =
1526 expand_list_objects_filter_spec(&filter_options);
1527 set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER, spec);
1528 set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1530 if (negotiation_tip.nr) {
1531 if (transport->smart_options)
1532 add_negotiation_tips(transport->smart_options);
1533 else
1534 warning("ignoring --negotiation-tip because the protocol does not support it");
1536 return transport;
1539 static int backfill_tags(struct transport *transport,
1540 struct ref_transaction *transaction,
1541 struct ref *ref_map,
1542 struct fetch_head *fetch_head)
1544 int retcode, cannot_reuse;
1547 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1548 * when remote helper is used (setting it to an empty string
1549 * is not unsetting). We could extend the remote helper
1550 * protocol for that, but for now, just force a new connection
1551 * without deepen-since. Similar story for deepen-not.
1553 cannot_reuse = transport->cannot_reuse ||
1554 deepen_since || deepen_not.nr;
1555 if (cannot_reuse) {
1556 gsecondary = prepare_transport(transport->remote, 0);
1557 transport = gsecondary;
1560 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1561 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1562 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1563 retcode = fetch_and_consume_refs(transport, transaction, ref_map, fetch_head);
1565 if (gsecondary) {
1566 transport_disconnect(gsecondary);
1567 gsecondary = NULL;
1570 return retcode;
1573 static int do_fetch(struct transport *transport,
1574 struct refspec *rs)
1576 struct ref_transaction *transaction = NULL;
1577 struct ref *ref_map = NULL;
1578 int autotags = (transport->remote->fetch_tags == 1);
1579 int retcode = 0;
1580 const struct ref *remote_refs;
1581 struct transport_ls_refs_options transport_ls_refs_options =
1582 TRANSPORT_LS_REFS_OPTIONS_INIT;
1583 int must_list_refs = 1;
1584 struct fetch_head fetch_head = { 0 };
1585 struct strbuf err = STRBUF_INIT;
1587 if (tags == TAGS_DEFAULT) {
1588 if (transport->remote->fetch_tags == 2)
1589 tags = TAGS_SET;
1590 if (transport->remote->fetch_tags == -1)
1591 tags = TAGS_UNSET;
1594 /* if not appending, truncate FETCH_HEAD */
1595 if (!append && write_fetch_head) {
1596 retcode = truncate_fetch_head();
1597 if (retcode)
1598 goto cleanup;
1601 if (rs->nr) {
1602 int i;
1604 refspec_ref_prefixes(rs, &transport_ls_refs_options.ref_prefixes);
1607 * We can avoid listing refs if all of them are exact
1608 * OIDs
1610 must_list_refs = 0;
1611 for (i = 0; i < rs->nr; i++) {
1612 if (!rs->items[i].exact_sha1) {
1613 must_list_refs = 1;
1614 break;
1617 } else if (transport->remote && transport->remote->fetch.nr)
1618 refspec_ref_prefixes(&transport->remote->fetch,
1619 &transport_ls_refs_options.ref_prefixes);
1621 if (tags == TAGS_SET || tags == TAGS_DEFAULT) {
1622 must_list_refs = 1;
1623 if (transport_ls_refs_options.ref_prefixes.nr)
1624 strvec_push(&transport_ls_refs_options.ref_prefixes,
1625 "refs/tags/");
1628 if (must_list_refs) {
1629 trace2_region_enter("fetch", "remote_refs", the_repository);
1630 remote_refs = transport_get_remote_refs(transport,
1631 &transport_ls_refs_options);
1632 trace2_region_leave("fetch", "remote_refs", the_repository);
1633 } else
1634 remote_refs = NULL;
1636 transport_ls_refs_options_release(&transport_ls_refs_options);
1638 ref_map = get_ref_map(transport->remote, remote_refs, rs,
1639 tags, &autotags);
1640 if (!update_head_ok)
1641 check_not_current_branch(ref_map);
1643 retcode = open_fetch_head(&fetch_head);
1644 if (retcode)
1645 goto cleanup;
1647 if (atomic_fetch) {
1648 transaction = ref_transaction_begin(&err);
1649 if (!transaction) {
1650 retcode = error("%s", err.buf);
1651 goto cleanup;
1655 if (tags == TAGS_DEFAULT && autotags)
1656 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1657 if (prune) {
1659 * We only prune based on refspecs specified
1660 * explicitly (via command line or configuration); we
1661 * don't care whether --tags was specified.
1663 if (rs->nr) {
1664 retcode = prune_refs(rs, transaction, ref_map, transport->url);
1665 } else {
1666 retcode = prune_refs(&transport->remote->fetch,
1667 transaction, ref_map,
1668 transport->url);
1670 if (retcode != 0)
1671 retcode = 1;
1674 if (fetch_and_consume_refs(transport, transaction, ref_map, &fetch_head)) {
1675 retcode = 1;
1676 goto cleanup;
1680 * If neither --no-tags nor --tags was specified, do automated tag
1681 * following.
1683 if (tags == TAGS_DEFAULT && autotags) {
1684 struct ref *tags_ref_map = NULL, **tail = &tags_ref_map;
1686 find_non_local_tags(remote_refs, transaction, &tags_ref_map, &tail);
1687 if (tags_ref_map) {
1689 * If backfilling of tags fails then we want to tell
1690 * the user so, but we have to continue regardless to
1691 * populate upstream information of the references we
1692 * have already fetched above. The exception though is
1693 * when `--atomic` is passed: in that case we'll abort
1694 * the transaction and don't commit anything.
1696 if (backfill_tags(transport, transaction, tags_ref_map,
1697 &fetch_head))
1698 retcode = 1;
1701 free_refs(tags_ref_map);
1704 if (transaction) {
1705 if (retcode)
1706 goto cleanup;
1708 retcode = ref_transaction_commit(transaction, &err);
1709 if (retcode) {
1710 error("%s", err.buf);
1711 ref_transaction_free(transaction);
1712 transaction = NULL;
1713 goto cleanup;
1717 commit_fetch_head(&fetch_head);
1719 if (set_upstream) {
1720 struct branch *branch = branch_get("HEAD");
1721 struct ref *rm;
1722 struct ref *source_ref = NULL;
1725 * We're setting the upstream configuration for the
1726 * current branch. The relevant upstream is the
1727 * fetched branch that is meant to be merged with the
1728 * current one, i.e. the one fetched to FETCH_HEAD.
1730 * When there are several such branches, consider the
1731 * request ambiguous and err on the safe side by doing
1732 * nothing and just emit a warning.
1734 for (rm = ref_map; rm; rm = rm->next) {
1735 if (!rm->peer_ref) {
1736 if (source_ref) {
1737 warning(_("multiple branches detected, incompatible with --set-upstream"));
1738 goto cleanup;
1739 } else {
1740 source_ref = rm;
1744 if (source_ref) {
1745 if (!branch) {
1746 const char *shortname = source_ref->name;
1747 skip_prefix(shortname, "refs/heads/", &shortname);
1749 warning(_("could not set upstream of HEAD to '%s' from '%s' when "
1750 "it does not point to any branch."),
1751 shortname, transport->remote->name);
1752 goto cleanup;
1755 if (!strcmp(source_ref->name, "HEAD") ||
1756 starts_with(source_ref->name, "refs/heads/"))
1757 install_branch_config(0,
1758 branch->name,
1759 transport->remote->name,
1760 source_ref->name);
1761 else if (starts_with(source_ref->name, "refs/remotes/"))
1762 warning(_("not setting upstream for a remote remote-tracking branch"));
1763 else if (starts_with(source_ref->name, "refs/tags/"))
1764 warning(_("not setting upstream for a remote tag"));
1765 else
1766 warning(_("unknown branch type"));
1767 } else {
1768 warning(_("no source branch found;\n"
1769 "you need to specify exactly one branch with the --set-upstream option"));
1773 cleanup:
1774 if (retcode && transaction) {
1775 ref_transaction_abort(transaction, &err);
1776 error("%s", err.buf);
1779 close_fetch_head(&fetch_head);
1780 strbuf_release(&err);
1781 free_refs(ref_map);
1782 return retcode;
1785 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1787 struct string_list *list = priv;
1788 if (!remote->skip_default_update)
1789 string_list_append(list, remote->name);
1790 return 0;
1793 struct remote_group_data {
1794 const char *name;
1795 struct string_list *list;
1798 static int get_remote_group(const char *key, const char *value, void *priv)
1800 struct remote_group_data *g = priv;
1802 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1803 /* split list by white space */
1804 while (*value) {
1805 size_t wordlen = strcspn(value, " \t\n");
1807 if (wordlen >= 1)
1808 string_list_append_nodup(g->list,
1809 xstrndup(value, wordlen));
1810 value += wordlen + (value[wordlen] != '\0');
1814 return 0;
1817 static int add_remote_or_group(const char *name, struct string_list *list)
1819 int prev_nr = list->nr;
1820 struct remote_group_data g;
1821 g.name = name; g.list = list;
1823 git_config(get_remote_group, &g);
1824 if (list->nr == prev_nr) {
1825 struct remote *remote = remote_get(name);
1826 if (!remote_is_configured(remote, 0))
1827 return 0;
1828 string_list_append(list, remote->name);
1830 return 1;
1833 static void add_options_to_argv(struct strvec *argv)
1835 if (dry_run)
1836 strvec_push(argv, "--dry-run");
1837 if (prune != -1)
1838 strvec_push(argv, prune ? "--prune" : "--no-prune");
1839 if (prune_tags != -1)
1840 strvec_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1841 if (update_head_ok)
1842 strvec_push(argv, "--update-head-ok");
1843 if (force)
1844 strvec_push(argv, "--force");
1845 if (keep)
1846 strvec_push(argv, "--keep");
1847 if (recurse_submodules == RECURSE_SUBMODULES_ON)
1848 strvec_push(argv, "--recurse-submodules");
1849 else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1850 strvec_push(argv, "--recurse-submodules=on-demand");
1851 if (tags == TAGS_SET)
1852 strvec_push(argv, "--tags");
1853 else if (tags == TAGS_UNSET)
1854 strvec_push(argv, "--no-tags");
1855 if (verbosity >= 2)
1856 strvec_push(argv, "-v");
1857 if (verbosity >= 1)
1858 strvec_push(argv, "-v");
1859 else if (verbosity < 0)
1860 strvec_push(argv, "-q");
1861 if (family == TRANSPORT_FAMILY_IPV4)
1862 strvec_push(argv, "--ipv4");
1863 else if (family == TRANSPORT_FAMILY_IPV6)
1864 strvec_push(argv, "--ipv6");
1867 /* Fetch multiple remotes in parallel */
1869 struct parallel_fetch_state {
1870 const char **argv;
1871 struct string_list *remotes;
1872 int next, result;
1875 static int fetch_next_remote(struct child_process *cp, struct strbuf *out,
1876 void *cb, void **task_cb)
1878 struct parallel_fetch_state *state = cb;
1879 char *remote;
1881 if (state->next < 0 || state->next >= state->remotes->nr)
1882 return 0;
1884 remote = state->remotes->items[state->next++].string;
1885 *task_cb = remote;
1887 strvec_pushv(&cp->args, state->argv);
1888 strvec_push(&cp->args, remote);
1889 cp->git_cmd = 1;
1891 if (verbosity >= 0)
1892 printf(_("Fetching %s\n"), remote);
1894 return 1;
1897 static int fetch_failed_to_start(struct strbuf *out, void *cb, void *task_cb)
1899 struct parallel_fetch_state *state = cb;
1900 const char *remote = task_cb;
1902 state->result = error(_("could not fetch %s"), remote);
1904 return 0;
1907 static int fetch_finished(int result, struct strbuf *out,
1908 void *cb, void *task_cb)
1910 struct parallel_fetch_state *state = cb;
1911 const char *remote = task_cb;
1913 if (result) {
1914 strbuf_addf(out, _("could not fetch '%s' (exit code: %d)\n"),
1915 remote, result);
1916 state->result = -1;
1919 return 0;
1922 static int fetch_multiple(struct string_list *list, int max_children)
1924 int i, result = 0;
1925 struct strvec argv = STRVEC_INIT;
1927 if (!append && write_fetch_head) {
1928 int errcode = truncate_fetch_head();
1929 if (errcode)
1930 return errcode;
1933 strvec_pushl(&argv, "fetch", "--append", "--no-auto-gc",
1934 "--no-write-commit-graph", NULL);
1935 add_options_to_argv(&argv);
1937 if (max_children != 1 && list->nr != 1) {
1938 struct parallel_fetch_state state = { argv.v, list, 0, 0 };
1940 strvec_push(&argv, "--end-of-options");
1941 result = run_processes_parallel_tr2(max_children,
1942 &fetch_next_remote,
1943 &fetch_failed_to_start,
1944 &fetch_finished,
1945 &state,
1946 "fetch", "parallel/fetch");
1948 if (!result)
1949 result = state.result;
1950 } else
1951 for (i = 0; i < list->nr; i++) {
1952 const char *name = list->items[i].string;
1953 strvec_push(&argv, name);
1954 if (verbosity >= 0)
1955 printf(_("Fetching %s\n"), name);
1956 if (run_command_v_opt(argv.v, RUN_GIT_CMD)) {
1957 error(_("could not fetch %s"), name);
1958 result = 1;
1960 strvec_pop(&argv);
1963 strvec_clear(&argv);
1964 return !!result;
1968 * Fetching from the promisor remote should use the given filter-spec
1969 * or inherit the default filter-spec from the config.
1971 static inline void fetch_one_setup_partial(struct remote *remote)
1974 * Explicit --no-filter argument overrides everything, regardless
1975 * of any prior partial clones and fetches.
1977 if (filter_options.no_filter)
1978 return;
1981 * If no prior partial clone/fetch and the current fetch DID NOT
1982 * request a partial-fetch, do a normal fetch.
1984 if (!has_promisor_remote() && !filter_options.choice)
1985 return;
1988 * If this is a partial-fetch request, we enable partial on
1989 * this repo if not already enabled and remember the given
1990 * filter-spec as the default for subsequent fetches to this
1991 * remote if there is currently no default filter-spec.
1993 if (filter_options.choice) {
1994 partial_clone_register(remote->name, &filter_options);
1995 return;
1999 * Do a partial-fetch from the promisor remote using either the
2000 * explicitly given filter-spec or inherit the filter-spec from
2001 * the config.
2003 if (!filter_options.choice)
2004 partial_clone_get_default_filter_spec(&filter_options, remote->name);
2005 return;
2008 static int fetch_one(struct remote *remote, int argc, const char **argv,
2009 int prune_tags_ok, int use_stdin_refspecs)
2011 struct refspec rs = REFSPEC_INIT_FETCH;
2012 int i;
2013 int exit_code;
2014 int maybe_prune_tags;
2015 int remote_via_config = remote_is_configured(remote, 0);
2017 if (!remote)
2018 die(_("no remote repository specified; please specify either a URL or a\n"
2019 "remote name from which new revisions should be fetched"));
2021 gtransport = prepare_transport(remote, 1);
2023 if (prune < 0) {
2024 /* no command line request */
2025 if (0 <= remote->prune)
2026 prune = remote->prune;
2027 else if (0 <= fetch_prune_config)
2028 prune = fetch_prune_config;
2029 else
2030 prune = PRUNE_BY_DEFAULT;
2033 if (prune_tags < 0) {
2034 /* no command line request */
2035 if (0 <= remote->prune_tags)
2036 prune_tags = remote->prune_tags;
2037 else if (0 <= fetch_prune_tags_config)
2038 prune_tags = fetch_prune_tags_config;
2039 else
2040 prune_tags = PRUNE_TAGS_BY_DEFAULT;
2043 maybe_prune_tags = prune_tags_ok && prune_tags;
2044 if (maybe_prune_tags && remote_via_config)
2045 refspec_append(&remote->fetch, TAG_REFSPEC);
2047 if (maybe_prune_tags && (argc || !remote_via_config))
2048 refspec_append(&rs, TAG_REFSPEC);
2050 for (i = 0; i < argc; i++) {
2051 if (!strcmp(argv[i], "tag")) {
2052 i++;
2053 if (i >= argc)
2054 die(_("you need to specify a tag name"));
2056 refspec_appendf(&rs, "refs/tags/%s:refs/tags/%s",
2057 argv[i], argv[i]);
2058 } else {
2059 refspec_append(&rs, argv[i]);
2063 if (use_stdin_refspecs) {
2064 struct strbuf line = STRBUF_INIT;
2065 while (strbuf_getline_lf(&line, stdin) != EOF)
2066 refspec_append(&rs, line.buf);
2067 strbuf_release(&line);
2070 if (server_options.nr)
2071 gtransport->server_options = &server_options;
2073 sigchain_push_common(unlock_pack_on_signal);
2074 atexit(unlock_pack_atexit);
2075 sigchain_push(SIGPIPE, SIG_IGN);
2076 exit_code = do_fetch(gtransport, &rs);
2077 sigchain_pop(SIGPIPE);
2078 refspec_clear(&rs);
2079 transport_disconnect(gtransport);
2080 gtransport = NULL;
2081 return exit_code;
2084 int cmd_fetch(int argc, const char **argv, const char *prefix)
2086 int i;
2087 struct string_list list = STRING_LIST_INIT_DUP;
2088 struct remote *remote = NULL;
2089 int result = 0;
2090 int prune_tags_ok = 1;
2092 packet_trace_identity("fetch");
2094 /* Record the command line for the reflog */
2095 strbuf_addstr(&default_rla, "fetch");
2096 for (i = 1; i < argc; i++) {
2097 /* This handles non-URLs gracefully */
2098 char *anon = transport_anonymize_url(argv[i]);
2100 strbuf_addf(&default_rla, " %s", anon);
2101 free(anon);
2104 git_config(git_fetch_config, NULL);
2105 if (the_repository->gitdir) {
2106 prepare_repo_settings(the_repository);
2107 the_repository->settings.command_requires_full_index = 0;
2110 argc = parse_options(argc, argv, prefix,
2111 builtin_fetch_options, builtin_fetch_usage, 0);
2113 if (recurse_submodules_cli != RECURSE_SUBMODULES_DEFAULT)
2114 recurse_submodules = recurse_submodules_cli;
2116 if (negotiate_only) {
2117 switch (recurse_submodules_cli) {
2118 case RECURSE_SUBMODULES_OFF:
2119 case RECURSE_SUBMODULES_DEFAULT:
2121 * --negotiate-only should never recurse into
2122 * submodules. Skip it by setting recurse_submodules to
2123 * RECURSE_SUBMODULES_OFF.
2125 recurse_submodules = RECURSE_SUBMODULES_OFF;
2126 break;
2128 default:
2129 die(_("options '%s' and '%s' cannot be used together"),
2130 "--negotiate-only", "--recurse-submodules");
2134 if (recurse_submodules != RECURSE_SUBMODULES_OFF) {
2135 int *sfjc = submodule_fetch_jobs_config == -1
2136 ? &submodule_fetch_jobs_config : NULL;
2137 int *rs = recurse_submodules == RECURSE_SUBMODULES_DEFAULT
2138 ? &recurse_submodules : NULL;
2140 fetch_config_from_gitmodules(sfjc, rs);
2143 if (negotiate_only && !negotiation_tip.nr)
2144 die(_("--negotiate-only needs one or more --negotiation-tip=*"));
2146 if (deepen_relative) {
2147 if (deepen_relative < 0)
2148 die(_("negative depth in --deepen is not supported"));
2149 if (depth)
2150 die(_("options '%s' and '%s' cannot be used together"), "--deepen", "--depth");
2151 depth = xstrfmt("%d", deepen_relative);
2153 if (unshallow) {
2154 if (depth)
2155 die(_("options '%s' and '%s' cannot be used together"), "--depth", "--unshallow");
2156 else if (!is_repository_shallow(the_repository))
2157 die(_("--unshallow on a complete repository does not make sense"));
2158 else
2159 depth = xstrfmt("%d", INFINITE_DEPTH);
2162 /* no need to be strict, transport_set_option() will validate it again */
2163 if (depth && atoi(depth) < 1)
2164 die(_("depth %s is not a positive number"), depth);
2165 if (depth || deepen_since || deepen_not.nr)
2166 deepen = 1;
2168 /* FETCH_HEAD never gets updated in --dry-run mode */
2169 if (dry_run)
2170 write_fetch_head = 0;
2172 if (all) {
2173 if (argc == 1)
2174 die(_("fetch --all does not take a repository argument"));
2175 else if (argc > 1)
2176 die(_("fetch --all does not make sense with refspecs"));
2177 (void) for_each_remote(get_one_remote_for_fetch, &list);
2179 /* do not do fetch_multiple() of one */
2180 if (list.nr == 1)
2181 remote = remote_get(list.items[0].string);
2182 } else if (argc == 0) {
2183 /* No arguments -- use default remote */
2184 remote = remote_get(NULL);
2185 } else if (multiple) {
2186 /* All arguments are assumed to be remotes or groups */
2187 for (i = 0; i < argc; i++)
2188 if (!add_remote_or_group(argv[i], &list))
2189 die(_("no such remote or remote group: %s"),
2190 argv[i]);
2191 } else {
2192 /* Single remote or group */
2193 (void) add_remote_or_group(argv[0], &list);
2194 if (list.nr > 1) {
2195 /* More than one remote */
2196 if (argc > 1)
2197 die(_("fetching a group and specifying refspecs does not make sense"));
2198 } else {
2199 /* Zero or one remotes */
2200 remote = remote_get(argv[0]);
2201 prune_tags_ok = (argc == 1);
2202 argc--;
2203 argv++;
2207 if (negotiate_only) {
2208 struct oidset acked_commits = OIDSET_INIT;
2209 struct oidset_iter iter;
2210 const struct object_id *oid;
2212 if (!remote)
2213 die(_("must supply remote when using --negotiate-only"));
2214 gtransport = prepare_transport(remote, 1);
2215 if (gtransport->smart_options) {
2216 gtransport->smart_options->acked_commits = &acked_commits;
2217 } else {
2218 warning(_("protocol does not support --negotiate-only, exiting"));
2219 result = 1;
2220 goto cleanup;
2222 if (server_options.nr)
2223 gtransport->server_options = &server_options;
2224 result = transport_fetch_refs(gtransport, NULL);
2226 oidset_iter_init(&acked_commits, &iter);
2227 while ((oid = oidset_iter_next(&iter)))
2228 printf("%s\n", oid_to_hex(oid));
2229 oidset_clear(&acked_commits);
2230 } else if (remote) {
2231 if (filter_options.choice || has_promisor_remote())
2232 fetch_one_setup_partial(remote);
2233 result = fetch_one(remote, argc, argv, prune_tags_ok, stdin_refspecs);
2234 } else {
2235 int max_children = max_jobs;
2237 if (filter_options.choice)
2238 die(_("--filter can only be used with the remote "
2239 "configured in extensions.partialclone"));
2241 if (atomic_fetch)
2242 die(_("--atomic can only be used when fetching "
2243 "from one remote"));
2245 if (stdin_refspecs)
2246 die(_("--stdin can only be used when fetching "
2247 "from one remote"));
2249 if (max_children < 0)
2250 max_children = fetch_parallel_config;
2252 /* TODO should this also die if we have a previous partial-clone? */
2253 result = fetch_multiple(&list, max_children);
2258 * This is only needed after fetch_one(), which does not fetch
2259 * submodules by itself.
2261 * When we fetch from multiple remotes, fetch_multiple() has
2262 * already updated submodules to grab commits necessary for
2263 * the fetched history from each remote, so there is no need
2264 * to fetch submodules from here.
2266 if (!result && remote && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
2267 struct strvec options = STRVEC_INIT;
2268 int max_children = max_jobs;
2270 if (max_children < 0)
2271 max_children = submodule_fetch_jobs_config;
2272 if (max_children < 0)
2273 max_children = fetch_parallel_config;
2275 add_options_to_argv(&options);
2276 result = fetch_submodules(the_repository,
2277 &options,
2278 submodule_prefix,
2279 recurse_submodules,
2280 recurse_submodules_default,
2281 verbosity < 0,
2282 max_children);
2283 strvec_clear(&options);
2287 * Skip irrelevant tasks because we know objects were not
2288 * fetched.
2290 * NEEDSWORK: as a future optimization, we can return early
2291 * whenever objects were not fetched e.g. if we already have all
2292 * of them.
2294 if (negotiate_only)
2295 goto cleanup;
2297 prepare_repo_settings(the_repository);
2298 if (fetch_write_commit_graph > 0 ||
2299 (fetch_write_commit_graph < 0 &&
2300 the_repository->settings.fetch_write_commit_graph)) {
2301 int commit_graph_flags = COMMIT_GRAPH_WRITE_SPLIT;
2303 if (progress)
2304 commit_graph_flags |= COMMIT_GRAPH_WRITE_PROGRESS;
2306 write_commit_graph_reachable(the_repository->objects->odb,
2307 commit_graph_flags,
2308 NULL);
2311 if (enable_auto_gc) {
2312 if (refetch) {
2314 * Hint auto-maintenance strongly to encourage repacking,
2315 * but respect config settings disabling it.
2317 int opt_val;
2318 if (git_config_get_int("gc.autopacklimit", &opt_val))
2319 opt_val = -1;
2320 if (opt_val != 0)
2321 git_config_push_parameter("gc.autoPackLimit=1");
2323 if (git_config_get_int("maintenance.incremental-repack.auto", &opt_val))
2324 opt_val = -1;
2325 if (opt_val != 0)
2326 git_config_push_parameter("maintenance.incremental-repack.auto=-1");
2328 run_auto_maintenance(verbosity < 0);
2331 cleanup:
2332 string_list_clear(&list, 0);
2333 return result;