builtin/show: do not prune by pathspec
[git/mjg.git] / builtin / fetch.c
blob693f02b95802bc25a825bf27477c29d15a0b76d8
1 /*
2 * "git fetch"
3 */
4 #include "builtin.h"
5 #include "advice.h"
6 #include "config.h"
7 #include "gettext.h"
8 #include "environment.h"
9 #include "hex.h"
10 #include "repository.h"
11 #include "refs.h"
12 #include "refspec.h"
13 #include "object-name.h"
14 #include "object-store-ll.h"
15 #include "oidset.h"
16 #include "oid-array.h"
17 #include "commit.h"
18 #include "string-list.h"
19 #include "remote.h"
20 #include "transport.h"
21 #include "run-command.h"
22 #include "parse-options.h"
23 #include "sigchain.h"
24 #include "submodule-config.h"
25 #include "submodule.h"
26 #include "connected.h"
27 #include "strvec.h"
28 #include "utf8.h"
29 #include "pager.h"
30 #include "path.h"
31 #include "pkt-line.h"
32 #include "list-objects-filter-options.h"
33 #include "commit-reach.h"
34 #include "branch.h"
35 #include "promisor-remote.h"
36 #include "commit-graph.h"
37 #include "shallow.h"
38 #include "trace.h"
39 #include "trace2.h"
40 #include "bundle-uri.h"
42 #define FORCED_UPDATES_DELAY_WARNING_IN_MS (10 * 1000)
44 static const char * const builtin_fetch_usage[] = {
45 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
46 N_("git fetch [<options>] <group>"),
47 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
48 N_("git fetch --all [<options>]"),
49 NULL
52 enum {
53 TAGS_UNSET = 0,
54 TAGS_DEFAULT = 1,
55 TAGS_SET = 2
58 enum display_format {
59 DISPLAY_FORMAT_FULL,
60 DISPLAY_FORMAT_COMPACT,
61 DISPLAY_FORMAT_PORCELAIN,
64 struct display_state {
65 struct strbuf buf;
67 int refcol_width;
68 enum display_format format;
70 char *url;
71 int url_len, shown_url;
74 static uint64_t forced_updates_ms = 0;
75 static int prefetch = 0;
76 static int prune = -1; /* unspecified */
77 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
79 static int prune_tags = -1; /* unspecified */
80 #define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
82 static int append, dry_run, force, keep, update_head_ok;
83 static int write_fetch_head = 1;
84 static int verbosity, deepen_relative, set_upstream, refetch;
85 static int progress = -1;
86 static int tags = TAGS_DEFAULT, update_shallow, deepen;
87 static int atomic_fetch;
88 static enum transport_family family;
89 static const char *depth;
90 static const char *deepen_since;
91 static const char *upload_pack;
92 static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
93 static struct strbuf default_rla = STRBUF_INIT;
94 static struct transport *gtransport;
95 static struct transport *gsecondary;
96 static struct refspec refmap = REFSPEC_INIT_FETCH;
97 static struct list_objects_filter_options filter_options = LIST_OBJECTS_FILTER_INIT;
98 static struct string_list server_options = STRING_LIST_INIT_DUP;
99 static struct string_list negotiation_tip = STRING_LIST_INIT_NODUP;
101 struct fetch_config {
102 enum display_format display_format;
103 int all;
104 int prune;
105 int prune_tags;
106 int show_forced_updates;
107 int recurse_submodules;
108 int parallel;
109 int submodule_fetch_jobs;
112 static int git_fetch_config(const char *k, const char *v,
113 const struct config_context *ctx, void *cb)
115 struct fetch_config *fetch_config = cb;
117 if (!strcmp(k, "fetch.all")) {
118 fetch_config->all = git_config_bool(k, v);
119 return 0;
122 if (!strcmp(k, "fetch.prune")) {
123 fetch_config->prune = git_config_bool(k, v);
124 return 0;
127 if (!strcmp(k, "fetch.prunetags")) {
128 fetch_config->prune_tags = git_config_bool(k, v);
129 return 0;
132 if (!strcmp(k, "fetch.showforcedupdates")) {
133 fetch_config->show_forced_updates = git_config_bool(k, v);
134 return 0;
137 if (!strcmp(k, "submodule.recurse")) {
138 int r = git_config_bool(k, v) ?
139 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
140 fetch_config->recurse_submodules = r;
141 return 0;
144 if (!strcmp(k, "submodule.fetchjobs")) {
145 fetch_config->submodule_fetch_jobs = parse_submodule_fetchjobs(k, v, ctx->kvi);
146 return 0;
147 } else if (!strcmp(k, "fetch.recursesubmodules")) {
148 fetch_config->recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
149 return 0;
152 if (!strcmp(k, "fetch.parallel")) {
153 fetch_config->parallel = git_config_int(k, v, ctx->kvi);
154 if (fetch_config->parallel < 0)
155 die(_("fetch.parallel cannot be negative"));
156 if (!fetch_config->parallel)
157 fetch_config->parallel = online_cpus();
158 return 0;
161 if (!strcmp(k, "fetch.output")) {
162 if (!v)
163 return config_error_nonbool(k);
164 else if (!strcasecmp(v, "full"))
165 fetch_config->display_format = DISPLAY_FORMAT_FULL;
166 else if (!strcasecmp(v, "compact"))
167 fetch_config->display_format = DISPLAY_FORMAT_COMPACT;
168 else
169 die(_("invalid value for '%s': '%s'"),
170 "fetch.output", v);
173 return git_default_config(k, v, ctx, cb);
176 static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
178 BUG_ON_OPT_NEG(unset);
181 * "git fetch --refmap='' origin foo"
182 * can be used to tell the command not to store anywhere
184 refspec_append(opt->value, arg);
186 return 0;
189 static void unlock_pack(unsigned int flags)
191 if (gtransport)
192 transport_unlock_pack(gtransport, flags);
193 if (gsecondary)
194 transport_unlock_pack(gsecondary, flags);
197 static void unlock_pack_atexit(void)
199 unlock_pack(0);
202 static void unlock_pack_on_signal(int signo)
204 unlock_pack(TRANSPORT_UNLOCK_PACK_IN_SIGNAL_HANDLER);
205 sigchain_pop(signo);
206 raise(signo);
209 static void add_merge_config(struct ref **head,
210 const struct ref *remote_refs,
211 struct branch *branch,
212 struct ref ***tail)
214 int i;
216 for (i = 0; i < branch->merge_nr; i++) {
217 struct ref *rm, **old_tail = *tail;
218 struct refspec_item refspec;
220 for (rm = *head; rm; rm = rm->next) {
221 if (branch_merge_matches(branch, i, rm->name)) {
222 rm->fetch_head_status = FETCH_HEAD_MERGE;
223 break;
226 if (rm)
227 continue;
230 * Not fetched to a remote-tracking branch? We need to fetch
231 * it anyway to allow this branch's "branch.$name.merge"
232 * to be honored by 'git pull', but we do not have to
233 * fail if branch.$name.merge is misconfigured to point
234 * at a nonexisting branch. If we were indeed called by
235 * 'git pull', it will notice the misconfiguration because
236 * there is no entry in the resulting FETCH_HEAD marked
237 * for merging.
239 memset(&refspec, 0, sizeof(refspec));
240 refspec.src = branch->merge[i]->src;
241 get_fetch_map(remote_refs, &refspec, tail, 1);
242 for (rm = *old_tail; rm; rm = rm->next)
243 rm->fetch_head_status = FETCH_HEAD_MERGE;
247 static void create_fetch_oidset(struct ref **head, struct oidset *out)
249 struct ref *rm = *head;
250 while (rm) {
251 oidset_insert(out, &rm->old_oid);
252 rm = rm->next;
256 struct refname_hash_entry {
257 struct hashmap_entry ent;
258 struct object_id oid;
259 int ignore;
260 char refname[FLEX_ARRAY];
263 static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data UNUSED,
264 const struct hashmap_entry *eptr,
265 const struct hashmap_entry *entry_or_key,
266 const void *keydata)
268 const struct refname_hash_entry *e1, *e2;
270 e1 = container_of(eptr, const struct refname_hash_entry, ent);
271 e2 = container_of(entry_or_key, const struct refname_hash_entry, ent);
272 return strcmp(e1->refname, keydata ? keydata : e2->refname);
275 static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
276 const char *refname,
277 const struct object_id *oid)
279 struct refname_hash_entry *ent;
280 size_t len = strlen(refname);
282 FLEX_ALLOC_MEM(ent, refname, refname, len);
283 hashmap_entry_init(&ent->ent, strhash(refname));
284 oidcpy(&ent->oid, oid);
285 hashmap_add(map, &ent->ent);
286 return ent;
289 static int add_one_refname(const char *refname,
290 const struct object_id *oid,
291 int flag UNUSED, void *cbdata)
293 struct hashmap *refname_map = cbdata;
295 (void) refname_hash_add(refname_map, refname, oid);
296 return 0;
299 static void refname_hash_init(struct hashmap *map)
301 hashmap_init(map, refname_hash_entry_cmp, NULL, 0);
304 static int refname_hash_exists(struct hashmap *map, const char *refname)
306 return !!hashmap_get_from_hash(map, strhash(refname), refname);
309 static void clear_item(struct refname_hash_entry *item)
311 item->ignore = 1;
315 static void add_already_queued_tags(const char *refname,
316 const struct object_id *old_oid UNUSED,
317 const struct object_id *new_oid,
318 void *cb_data)
320 struct hashmap *queued_tags = cb_data;
321 if (starts_with(refname, "refs/tags/") && new_oid)
322 (void) refname_hash_add(queued_tags, refname, new_oid);
325 static void find_non_local_tags(const struct ref *refs,
326 struct ref_transaction *transaction,
327 struct ref **head,
328 struct ref ***tail)
330 struct hashmap existing_refs;
331 struct hashmap remote_refs;
332 struct oidset fetch_oids = OIDSET_INIT;
333 struct string_list remote_refs_list = STRING_LIST_INIT_NODUP;
334 struct string_list_item *remote_ref_item;
335 const struct ref *ref;
336 struct refname_hash_entry *item = NULL;
337 const int quick_flags = OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT;
339 refname_hash_init(&existing_refs);
340 refname_hash_init(&remote_refs);
341 create_fetch_oidset(head, &fetch_oids);
343 refs_for_each_ref(get_main_ref_store(the_repository), add_one_refname,
344 &existing_refs);
347 * If we already have a transaction, then we need to filter out all
348 * tags which have already been queued up.
350 if (transaction)
351 ref_transaction_for_each_queued_update(transaction,
352 add_already_queued_tags,
353 &existing_refs);
355 for (ref = refs; ref; ref = ref->next) {
356 if (!starts_with(ref->name, "refs/tags/"))
357 continue;
360 * The peeled ref always follows the matching base
361 * ref, so if we see a peeled ref that we don't want
362 * to fetch then we can mark the ref entry in the list
363 * as one to ignore by setting util to NULL.
365 if (ends_with(ref->name, "^{}")) {
366 if (item &&
367 !repo_has_object_file_with_flags(the_repository, &ref->old_oid, quick_flags) &&
368 !oidset_contains(&fetch_oids, &ref->old_oid) &&
369 !repo_has_object_file_with_flags(the_repository, &item->oid, quick_flags) &&
370 !oidset_contains(&fetch_oids, &item->oid))
371 clear_item(item);
372 item = NULL;
373 continue;
377 * If item is non-NULL here, then we previously saw a
378 * ref not followed by a peeled reference, so we need
379 * to check if it is a lightweight tag that we want to
380 * fetch.
382 if (item &&
383 !repo_has_object_file_with_flags(the_repository, &item->oid, quick_flags) &&
384 !oidset_contains(&fetch_oids, &item->oid))
385 clear_item(item);
387 item = NULL;
389 /* skip duplicates and refs that we already have */
390 if (refname_hash_exists(&remote_refs, ref->name) ||
391 refname_hash_exists(&existing_refs, ref->name))
392 continue;
394 item = refname_hash_add(&remote_refs, ref->name, &ref->old_oid);
395 string_list_insert(&remote_refs_list, ref->name);
397 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
400 * We may have a final lightweight tag that needs to be
401 * checked to see if it needs fetching.
403 if (item &&
404 !repo_has_object_file_with_flags(the_repository, &item->oid, quick_flags) &&
405 !oidset_contains(&fetch_oids, &item->oid))
406 clear_item(item);
409 * For all the tags in the remote_refs_list,
410 * add them to the list of refs to be fetched
412 for_each_string_list_item(remote_ref_item, &remote_refs_list) {
413 const char *refname = remote_ref_item->string;
414 struct ref *rm;
415 unsigned int hash = strhash(refname);
417 item = hashmap_get_entry_from_hash(&remote_refs, hash, refname,
418 struct refname_hash_entry, ent);
419 if (!item)
420 BUG("unseen remote ref?");
422 /* Unless we have already decided to ignore this item... */
423 if (item->ignore)
424 continue;
426 rm = alloc_ref(item->refname);
427 rm->peer_ref = alloc_ref(item->refname);
428 oidcpy(&rm->old_oid, &item->oid);
429 **tail = rm;
430 *tail = &rm->next;
432 hashmap_clear_and_free(&remote_refs, struct refname_hash_entry, ent);
433 string_list_clear(&remote_refs_list, 0);
434 oidset_clear(&fetch_oids);
437 static void filter_prefetch_refspec(struct refspec *rs)
439 int i;
441 if (!prefetch)
442 return;
444 for (i = 0; i < rs->nr; i++) {
445 struct strbuf new_dst = STRBUF_INIT;
446 char *old_dst;
447 const char *sub = NULL;
449 if (rs->items[i].negative)
450 continue;
451 if (!rs->items[i].dst ||
452 (rs->items[i].src &&
453 starts_with(rs->items[i].src,
454 ref_namespace[NAMESPACE_TAGS].ref))) {
455 int j;
457 free(rs->items[i].src);
458 free(rs->items[i].dst);
460 for (j = i + 1; j < rs->nr; j++) {
461 rs->items[j - 1] = rs->items[j];
462 rs->raw[j - 1] = rs->raw[j];
464 rs->nr--;
465 i--;
466 continue;
469 old_dst = rs->items[i].dst;
470 strbuf_addstr(&new_dst, ref_namespace[NAMESPACE_PREFETCH].ref);
473 * If old_dst starts with "refs/", then place
474 * sub after that prefix. Otherwise, start at
475 * the beginning of the string.
477 if (!skip_prefix(old_dst, "refs/", &sub))
478 sub = old_dst;
479 strbuf_addstr(&new_dst, sub);
481 rs->items[i].dst = strbuf_detach(&new_dst, NULL);
482 rs->items[i].force = 1;
484 free(old_dst);
488 static struct ref *get_ref_map(struct remote *remote,
489 const struct ref *remote_refs,
490 struct refspec *rs,
491 int tags, int *autotags)
493 int i;
494 struct ref *rm;
495 struct ref *ref_map = NULL;
496 struct ref **tail = &ref_map;
498 /* opportunistically-updated references: */
499 struct ref *orefs = NULL, **oref_tail = &orefs;
501 struct hashmap existing_refs;
502 int existing_refs_populated = 0;
504 filter_prefetch_refspec(rs);
505 if (remote)
506 filter_prefetch_refspec(&remote->fetch);
508 if (rs->nr) {
509 struct refspec *fetch_refspec;
511 for (i = 0; i < rs->nr; i++) {
512 get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
513 if (rs->items[i].dst && rs->items[i].dst[0])
514 *autotags = 1;
516 /* Merge everything on the command line (but not --tags) */
517 for (rm = ref_map; rm; rm = rm->next)
518 rm->fetch_head_status = FETCH_HEAD_MERGE;
521 * For any refs that we happen to be fetching via
522 * command-line arguments, the destination ref might
523 * have been missing or have been different than the
524 * remote-tracking ref that would be derived from the
525 * configured refspec. In these cases, we want to
526 * take the opportunity to update their configured
527 * remote-tracking reference. However, we do not want
528 * to mention these entries in FETCH_HEAD at all, as
529 * they would simply be duplicates of existing
530 * entries, so we set them FETCH_HEAD_IGNORE below.
532 * We compute these entries now, based only on the
533 * refspecs specified on the command line. But we add
534 * them to the list following the refspecs resulting
535 * from the tags option so that one of the latter,
536 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
537 * by ref_remove_duplicates() in favor of one of these
538 * opportunistic entries with FETCH_HEAD_IGNORE.
540 if (refmap.nr)
541 fetch_refspec = &refmap;
542 else
543 fetch_refspec = &remote->fetch;
545 for (i = 0; i < fetch_refspec->nr; i++)
546 get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
547 } else if (refmap.nr) {
548 die("--refmap option is only meaningful with command-line refspec(s)");
549 } else {
550 /* Use the defaults */
551 struct branch *branch = branch_get(NULL);
552 int has_merge = branch_has_merge_config(branch);
553 if (remote &&
554 (remote->fetch.nr ||
555 /* Note: has_merge implies non-NULL branch->remote_name */
556 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
557 for (i = 0; i < remote->fetch.nr; i++) {
558 get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
559 if (remote->fetch.items[i].dst &&
560 remote->fetch.items[i].dst[0])
561 *autotags = 1;
562 if (!i && !has_merge && ref_map &&
563 !remote->fetch.items[0].pattern)
564 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
567 * if the remote we're fetching from is the same
568 * as given in branch.<name>.remote, we add the
569 * ref given in branch.<name>.merge, too.
571 * Note: has_merge implies non-NULL branch->remote_name
573 if (has_merge &&
574 !strcmp(branch->remote_name, remote->name))
575 add_merge_config(&ref_map, remote_refs, branch, &tail);
576 } else if (!prefetch) {
577 ref_map = get_remote_ref(remote_refs, "HEAD");
578 if (!ref_map)
579 die(_("couldn't find remote ref HEAD"));
580 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
581 tail = &ref_map->next;
585 if (tags == TAGS_SET) {
586 struct refspec_item tag_refspec;
588 /* also fetch all tags */
589 refspec_item_init(&tag_refspec, TAG_REFSPEC, 0);
590 get_fetch_map(remote_refs, &tag_refspec, &tail, 0);
591 refspec_item_clear(&tag_refspec);
592 } else if (tags == TAGS_DEFAULT && *autotags) {
593 find_non_local_tags(remote_refs, NULL, &ref_map, &tail);
596 /* Now append any refs to be updated opportunistically: */
597 *tail = orefs;
598 for (rm = orefs; rm; rm = rm->next) {
599 rm->fetch_head_status = FETCH_HEAD_IGNORE;
600 tail = &rm->next;
604 * apply negative refspecs first, before we remove duplicates. This is
605 * necessary as negative refspecs might remove an otherwise conflicting
606 * duplicate.
608 if (rs->nr)
609 ref_map = apply_negative_refspecs(ref_map, rs);
610 else
611 ref_map = apply_negative_refspecs(ref_map, &remote->fetch);
613 ref_map = ref_remove_duplicates(ref_map);
615 for (rm = ref_map; rm; rm = rm->next) {
616 if (rm->peer_ref) {
617 const char *refname = rm->peer_ref->name;
618 struct refname_hash_entry *peer_item;
619 unsigned int hash = strhash(refname);
621 if (!existing_refs_populated) {
622 refname_hash_init(&existing_refs);
623 refs_for_each_ref(get_main_ref_store(the_repository),
624 add_one_refname,
625 &existing_refs);
626 existing_refs_populated = 1;
629 peer_item = hashmap_get_entry_from_hash(&existing_refs,
630 hash, refname,
631 struct refname_hash_entry, ent);
632 if (peer_item) {
633 struct object_id *old_oid = &peer_item->oid;
634 oidcpy(&rm->peer_ref->old_oid, old_oid);
638 if (existing_refs_populated)
639 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
641 return ref_map;
644 #define STORE_REF_ERROR_OTHER 1
645 #define STORE_REF_ERROR_DF_CONFLICT 2
647 static int s_update_ref(const char *action,
648 struct ref *ref,
649 struct ref_transaction *transaction,
650 int check_old)
652 char *msg;
653 char *rla = getenv("GIT_REFLOG_ACTION");
654 struct ref_transaction *our_transaction = NULL;
655 struct strbuf err = STRBUF_INIT;
656 int ret;
658 if (dry_run)
659 return 0;
660 if (!rla)
661 rla = default_rla.buf;
662 msg = xstrfmt("%s: %s", rla, action);
665 * If no transaction was passed to us, we manage the transaction
666 * ourselves. Otherwise, we trust the caller to handle the transaction
667 * lifecycle.
669 if (!transaction) {
670 transaction = our_transaction = ref_store_transaction_begin(get_main_ref_store(the_repository),
671 &err);
672 if (!transaction) {
673 ret = STORE_REF_ERROR_OTHER;
674 goto out;
678 ret = ref_transaction_update(transaction, ref->name, &ref->new_oid,
679 check_old ? &ref->old_oid : NULL,
680 NULL, NULL, 0, msg, &err);
681 if (ret) {
682 ret = STORE_REF_ERROR_OTHER;
683 goto out;
686 if (our_transaction) {
687 switch (ref_transaction_commit(our_transaction, &err)) {
688 case 0:
689 break;
690 case TRANSACTION_NAME_CONFLICT:
691 ret = STORE_REF_ERROR_DF_CONFLICT;
692 goto out;
693 default:
694 ret = STORE_REF_ERROR_OTHER;
695 goto out;
699 out:
700 ref_transaction_free(our_transaction);
701 if (ret)
702 error("%s", err.buf);
703 strbuf_release(&err);
704 free(msg);
705 return ret;
708 static int refcol_width(const struct ref *ref_map, int compact_format)
710 const struct ref *ref;
711 int max, width = 10;
713 max = term_columns();
714 if (compact_format)
715 max = max * 2 / 3;
717 for (ref = ref_map; ref; ref = ref->next) {
718 int rlen, llen = 0, len;
720 if (ref->status == REF_STATUS_REJECT_SHALLOW ||
721 !ref->peer_ref ||
722 !strcmp(ref->name, "HEAD"))
723 continue;
725 /* uptodate lines are only shown on high verbosity level */
726 if (verbosity <= 0 && oideq(&ref->peer_ref->old_oid, &ref->old_oid))
727 continue;
729 rlen = utf8_strwidth(prettify_refname(ref->name));
730 if (!compact_format)
731 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
734 * rough estimation to see if the output line is too long and
735 * should not be counted (we can't do precise calculation
736 * anyway because we don't know if the error explanation part
737 * will be printed in update_local_ref)
739 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
740 if (len >= max)
741 continue;
743 if (width < rlen)
744 width = rlen;
747 return width;
750 static void display_state_init(struct display_state *display_state, struct ref *ref_map,
751 const char *raw_url, enum display_format format)
753 int i;
755 memset(display_state, 0, sizeof(*display_state));
756 strbuf_init(&display_state->buf, 0);
757 display_state->format = format;
759 if (raw_url)
760 display_state->url = transport_anonymize_url(raw_url);
761 else
762 display_state->url = xstrdup("foreign");
764 display_state->url_len = strlen(display_state->url);
765 for (i = display_state->url_len - 1; display_state->url[i] == '/' && 0 <= i; i--)
767 display_state->url_len = i + 1;
768 if (4 < i && !strncmp(".git", display_state->url + i - 3, 4))
769 display_state->url_len = i - 3;
771 if (verbosity < 0)
772 return;
774 switch (display_state->format) {
775 case DISPLAY_FORMAT_FULL:
776 case DISPLAY_FORMAT_COMPACT:
777 display_state->refcol_width = refcol_width(ref_map,
778 display_state->format == DISPLAY_FORMAT_COMPACT);
779 break;
780 case DISPLAY_FORMAT_PORCELAIN:
781 /* We don't need to precompute anything here. */
782 break;
783 default:
784 BUG("unexpected display format %d", display_state->format);
788 static void display_state_release(struct display_state *display_state)
790 strbuf_release(&display_state->buf);
791 free(display_state->url);
794 static void print_remote_to_local(struct display_state *display_state,
795 const char *remote, const char *local)
797 strbuf_addf(&display_state->buf, "%-*s -> %s",
798 display_state->refcol_width, remote, local);
801 static int find_and_replace(struct strbuf *haystack,
802 const char *needle,
803 const char *placeholder)
805 const char *p = NULL;
806 int plen, nlen;
808 nlen = strlen(needle);
809 if (ends_with(haystack->buf, needle))
810 p = haystack->buf + haystack->len - nlen;
811 else
812 p = strstr(haystack->buf, needle);
813 if (!p)
814 return 0;
816 if (p > haystack->buf && p[-1] != '/')
817 return 0;
819 plen = strlen(p);
820 if (plen > nlen && p[nlen] != '/')
821 return 0;
823 strbuf_splice(haystack, p - haystack->buf, nlen,
824 placeholder, strlen(placeholder));
825 return 1;
828 static void print_compact(struct display_state *display_state,
829 const char *remote, const char *local)
831 struct strbuf r = STRBUF_INIT;
832 struct strbuf l = STRBUF_INIT;
834 if (!strcmp(remote, local)) {
835 strbuf_addf(&display_state->buf, "%-*s -> *", display_state->refcol_width, remote);
836 return;
839 strbuf_addstr(&r, remote);
840 strbuf_addstr(&l, local);
842 if (!find_and_replace(&r, local, "*"))
843 find_and_replace(&l, remote, "*");
844 print_remote_to_local(display_state, r.buf, l.buf);
846 strbuf_release(&r);
847 strbuf_release(&l);
850 static void display_ref_update(struct display_state *display_state, char code,
851 const char *summary, const char *error,
852 const char *remote, const char *local,
853 const struct object_id *old_oid,
854 const struct object_id *new_oid,
855 int summary_width)
857 FILE *f = stderr;
859 if (verbosity < 0)
860 return;
862 strbuf_reset(&display_state->buf);
864 switch (display_state->format) {
865 case DISPLAY_FORMAT_FULL:
866 case DISPLAY_FORMAT_COMPACT: {
867 int width;
869 if (!display_state->shown_url) {
870 strbuf_addf(&display_state->buf, _("From %.*s\n"),
871 display_state->url_len, display_state->url);
872 display_state->shown_url = 1;
875 width = (summary_width + strlen(summary) - gettext_width(summary));
876 remote = prettify_refname(remote);
877 local = prettify_refname(local);
879 strbuf_addf(&display_state->buf, " %c %-*s ", code, width, summary);
881 if (display_state->format != DISPLAY_FORMAT_COMPACT)
882 print_remote_to_local(display_state, remote, local);
883 else
884 print_compact(display_state, remote, local);
886 if (error)
887 strbuf_addf(&display_state->buf, " (%s)", error);
889 break;
891 case DISPLAY_FORMAT_PORCELAIN:
892 strbuf_addf(&display_state->buf, "%c %s %s %s", code,
893 oid_to_hex(old_oid), oid_to_hex(new_oid), local);
894 f = stdout;
895 break;
896 default:
897 BUG("unexpected display format %d", display_state->format);
899 strbuf_addch(&display_state->buf, '\n');
901 fputs(display_state->buf.buf, f);
904 static int update_local_ref(struct ref *ref,
905 struct ref_transaction *transaction,
906 struct display_state *display_state,
907 const struct ref *remote_ref,
908 int summary_width,
909 const struct fetch_config *config)
911 struct commit *current = NULL, *updated;
912 int fast_forward = 0;
914 if (!repo_has_object_file(the_repository, &ref->new_oid))
915 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
917 if (oideq(&ref->old_oid, &ref->new_oid)) {
918 if (verbosity > 0)
919 display_ref_update(display_state, '=', _("[up to date]"), NULL,
920 remote_ref->name, ref->name,
921 &ref->old_oid, &ref->new_oid, summary_width);
922 return 0;
925 if (!update_head_ok &&
926 !is_null_oid(&ref->old_oid) &&
927 branch_checked_out(ref->name)) {
929 * If this is the head, and it's not okay to update
930 * the head, and the old value of the head isn't empty...
932 display_ref_update(display_state, '!', _("[rejected]"),
933 _("can't fetch into checked-out branch"),
934 remote_ref->name, ref->name,
935 &ref->old_oid, &ref->new_oid, summary_width);
936 return 1;
939 if (!is_null_oid(&ref->old_oid) &&
940 starts_with(ref->name, "refs/tags/")) {
941 if (force || ref->force) {
942 int r;
943 r = s_update_ref("updating tag", ref, transaction, 0);
944 display_ref_update(display_state, r ? '!' : 't', _("[tag update]"),
945 r ? _("unable to update local ref") : NULL,
946 remote_ref->name, ref->name,
947 &ref->old_oid, &ref->new_oid, summary_width);
948 return r;
949 } else {
950 display_ref_update(display_state, '!', _("[rejected]"),
951 _("would clobber existing tag"),
952 remote_ref->name, ref->name,
953 &ref->old_oid, &ref->new_oid, summary_width);
954 return 1;
958 current = lookup_commit_reference_gently(the_repository,
959 &ref->old_oid, 1);
960 updated = lookup_commit_reference_gently(the_repository,
961 &ref->new_oid, 1);
962 if (!current || !updated) {
963 const char *msg;
964 const char *what;
965 int r;
967 * Nicely describe the new ref we're fetching.
968 * Base this on the remote's ref name, as it's
969 * more likely to follow a standard layout.
971 if (starts_with(remote_ref->name, "refs/tags/")) {
972 msg = "storing tag";
973 what = _("[new tag]");
974 } else if (starts_with(remote_ref->name, "refs/heads/")) {
975 msg = "storing head";
976 what = _("[new branch]");
977 } else {
978 msg = "storing ref";
979 what = _("[new ref]");
982 r = s_update_ref(msg, ref, transaction, 0);
983 display_ref_update(display_state, r ? '!' : '*', what,
984 r ? _("unable to update local ref") : NULL,
985 remote_ref->name, ref->name,
986 &ref->old_oid, &ref->new_oid, summary_width);
987 return r;
990 if (config->show_forced_updates) {
991 uint64_t t_before = getnanotime();
992 fast_forward = repo_in_merge_bases(the_repository, current,
993 updated);
994 if (fast_forward < 0)
995 exit(128);
996 forced_updates_ms += (getnanotime() - t_before) / 1000000;
997 } else {
998 fast_forward = 1;
1001 if (fast_forward) {
1002 struct strbuf quickref = STRBUF_INIT;
1003 int r;
1005 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
1006 strbuf_addstr(&quickref, "..");
1007 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
1008 r = s_update_ref("fast-forward", ref, transaction, 1);
1009 display_ref_update(display_state, r ? '!' : ' ', quickref.buf,
1010 r ? _("unable to update local ref") : NULL,
1011 remote_ref->name, ref->name,
1012 &ref->old_oid, &ref->new_oid, summary_width);
1013 strbuf_release(&quickref);
1014 return r;
1015 } else if (force || ref->force) {
1016 struct strbuf quickref = STRBUF_INIT;
1017 int r;
1018 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
1019 strbuf_addstr(&quickref, "...");
1020 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
1021 r = s_update_ref("forced-update", ref, transaction, 1);
1022 display_ref_update(display_state, r ? '!' : '+', quickref.buf,
1023 r ? _("unable to update local ref") : _("forced update"),
1024 remote_ref->name, ref->name,
1025 &ref->old_oid, &ref->new_oid, summary_width);
1026 strbuf_release(&quickref);
1027 return r;
1028 } else {
1029 display_ref_update(display_state, '!', _("[rejected]"), _("non-fast-forward"),
1030 remote_ref->name, ref->name,
1031 &ref->old_oid, &ref->new_oid, summary_width);
1032 return 1;
1036 static const struct object_id *iterate_ref_map(void *cb_data)
1038 struct ref **rm = cb_data;
1039 struct ref *ref = *rm;
1041 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
1042 ref = ref->next;
1043 if (!ref)
1044 return NULL;
1045 *rm = ref->next;
1046 return &ref->old_oid;
1049 struct fetch_head {
1050 FILE *fp;
1051 struct strbuf buf;
1054 static int open_fetch_head(struct fetch_head *fetch_head)
1056 const char *filename = git_path_fetch_head(the_repository);
1058 if (write_fetch_head) {
1059 fetch_head->fp = fopen(filename, "a");
1060 if (!fetch_head->fp)
1061 return error_errno(_("cannot open '%s'"), filename);
1062 strbuf_init(&fetch_head->buf, 0);
1063 } else {
1064 fetch_head->fp = NULL;
1067 return 0;
1070 static void append_fetch_head(struct fetch_head *fetch_head,
1071 const struct object_id *old_oid,
1072 enum fetch_head_status fetch_head_status,
1073 const char *note,
1074 const char *url, size_t url_len)
1076 char old_oid_hex[GIT_MAX_HEXSZ + 1];
1077 const char *merge_status_marker;
1078 size_t i;
1080 if (!fetch_head->fp)
1081 return;
1083 switch (fetch_head_status) {
1084 case FETCH_HEAD_NOT_FOR_MERGE:
1085 merge_status_marker = "not-for-merge";
1086 break;
1087 case FETCH_HEAD_MERGE:
1088 merge_status_marker = "";
1089 break;
1090 default:
1091 /* do not write anything to FETCH_HEAD */
1092 return;
1095 strbuf_addf(&fetch_head->buf, "%s\t%s\t%s",
1096 oid_to_hex_r(old_oid_hex, old_oid), merge_status_marker, note);
1097 for (i = 0; i < url_len; ++i)
1098 if ('\n' == url[i])
1099 strbuf_addstr(&fetch_head->buf, "\\n");
1100 else
1101 strbuf_addch(&fetch_head->buf, url[i]);
1102 strbuf_addch(&fetch_head->buf, '\n');
1105 * When using an atomic fetch, we do not want to update FETCH_HEAD if
1106 * any of the reference updates fails. We thus have to write all
1107 * updates to a buffer first and only commit it as soon as all
1108 * references have been successfully updated.
1110 if (!atomic_fetch) {
1111 strbuf_write(&fetch_head->buf, fetch_head->fp);
1112 strbuf_reset(&fetch_head->buf);
1116 static void commit_fetch_head(struct fetch_head *fetch_head)
1118 if (!fetch_head->fp || !atomic_fetch)
1119 return;
1120 strbuf_write(&fetch_head->buf, fetch_head->fp);
1123 static void close_fetch_head(struct fetch_head *fetch_head)
1125 if (!fetch_head->fp)
1126 return;
1128 fclose(fetch_head->fp);
1129 strbuf_release(&fetch_head->buf);
1132 static const char warn_show_forced_updates[] =
1133 N_("fetch normally indicates which branches had a forced update,\n"
1134 "but that check has been disabled; to re-enable, use '--show-forced-updates'\n"
1135 "flag or run 'git config fetch.showForcedUpdates true'");
1136 static const char warn_time_show_forced_updates[] =
1137 N_("it took %.2f seconds to check forced updates; you can use\n"
1138 "'--no-show-forced-updates' or run 'git config fetch.showForcedUpdates false'\n"
1139 "to avoid this check\n");
1141 static int store_updated_refs(struct display_state *display_state,
1142 const char *remote_name,
1143 int connectivity_checked,
1144 struct ref_transaction *transaction, struct ref *ref_map,
1145 struct fetch_head *fetch_head,
1146 const struct fetch_config *config)
1148 int rc = 0;
1149 struct strbuf note = STRBUF_INIT;
1150 const char *what, *kind;
1151 struct ref *rm;
1152 int want_status;
1153 int summary_width = 0;
1155 if (verbosity >= 0)
1156 summary_width = transport_summary_width(ref_map);
1158 if (!connectivity_checked) {
1159 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1161 opt.exclude_hidden_refs_section = "fetch";
1162 rm = ref_map;
1163 if (check_connected(iterate_ref_map, &rm, &opt)) {
1164 rc = error(_("%s did not send all necessary objects\n"),
1165 display_state->url);
1166 goto abort;
1171 * We do a pass for each fetch_head_status type in their enum order, so
1172 * merged entries are written before not-for-merge. That lets readers
1173 * use FETCH_HEAD as a refname to refer to the ref to be merged.
1175 for (want_status = FETCH_HEAD_MERGE;
1176 want_status <= FETCH_HEAD_IGNORE;
1177 want_status++) {
1178 for (rm = ref_map; rm; rm = rm->next) {
1179 struct ref *ref = NULL;
1181 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
1182 if (want_status == FETCH_HEAD_MERGE)
1183 warning(_("rejected %s because shallow roots are not allowed to be updated"),
1184 rm->peer_ref ? rm->peer_ref->name : rm->name);
1185 continue;
1189 * When writing FETCH_HEAD we need to determine whether
1190 * we already have the commit or not. If not, then the
1191 * reference is not for merge and needs to be written
1192 * to the reflog after other commits which we already
1193 * have. We're not interested in this property though
1194 * in case FETCH_HEAD is not to be updated, so we can
1195 * skip the classification in that case.
1197 if (fetch_head->fp) {
1198 struct commit *commit = NULL;
1201 * References in "refs/tags/" are often going to point
1202 * to annotated tags, which are not part of the
1203 * commit-graph. We thus only try to look up refs in
1204 * the graph which are not in that namespace to not
1205 * regress performance in repositories with many
1206 * annotated tags.
1208 if (!starts_with(rm->name, "refs/tags/"))
1209 commit = lookup_commit_in_graph(the_repository, &rm->old_oid);
1210 if (!commit) {
1211 commit = lookup_commit_reference_gently(the_repository,
1212 &rm->old_oid,
1214 if (!commit)
1215 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
1219 if (rm->fetch_head_status != want_status)
1220 continue;
1222 if (rm->peer_ref) {
1223 ref = alloc_ref(rm->peer_ref->name);
1224 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
1225 oidcpy(&ref->new_oid, &rm->old_oid);
1226 ref->force = rm->peer_ref->force;
1229 if (config->recurse_submodules != RECURSE_SUBMODULES_OFF &&
1230 (!rm->peer_ref || !oideq(&ref->old_oid, &ref->new_oid))) {
1231 check_for_new_submodule_commits(&rm->old_oid);
1234 if (!strcmp(rm->name, "HEAD")) {
1235 kind = "";
1236 what = "";
1237 } else if (skip_prefix(rm->name, "refs/heads/", &what)) {
1238 kind = "branch";
1239 } else if (skip_prefix(rm->name, "refs/tags/", &what)) {
1240 kind = "tag";
1241 } else if (skip_prefix(rm->name, "refs/remotes/", &what)) {
1242 kind = "remote-tracking branch";
1243 } else {
1244 kind = "";
1245 what = rm->name;
1248 strbuf_reset(&note);
1249 if (*what) {
1250 if (*kind)
1251 strbuf_addf(&note, "%s ", kind);
1252 strbuf_addf(&note, "'%s' of ", what);
1255 append_fetch_head(fetch_head, &rm->old_oid,
1256 rm->fetch_head_status,
1257 note.buf, display_state->url,
1258 display_state->url_len);
1260 if (ref) {
1261 rc |= update_local_ref(ref, transaction, display_state,
1262 rm, summary_width, config);
1263 free(ref);
1264 } else if (write_fetch_head || dry_run) {
1266 * Display fetches written to FETCH_HEAD (or
1267 * would be written to FETCH_HEAD, if --dry-run
1268 * is set).
1270 display_ref_update(display_state, '*',
1271 *kind ? kind : "branch", NULL,
1272 rm->name,
1273 "FETCH_HEAD",
1274 &rm->new_oid, &rm->old_oid,
1275 summary_width);
1280 if (rc & STORE_REF_ERROR_DF_CONFLICT)
1281 error(_("some local refs could not be updated; try running\n"
1282 " 'git remote prune %s' to remove any old, conflicting "
1283 "branches"), remote_name);
1285 if (advice_enabled(ADVICE_FETCH_SHOW_FORCED_UPDATES)) {
1286 if (!config->show_forced_updates) {
1287 warning(_(warn_show_forced_updates));
1288 } else if (forced_updates_ms > FORCED_UPDATES_DELAY_WARNING_IN_MS) {
1289 warning(_(warn_time_show_forced_updates),
1290 forced_updates_ms / 1000.0);
1294 abort:
1295 strbuf_release(&note);
1296 return rc;
1300 * We would want to bypass the object transfer altogether if
1301 * everything we are going to fetch already exists and is connected
1302 * locally.
1304 static int check_exist_and_connected(struct ref *ref_map)
1306 struct ref *rm = ref_map;
1307 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1308 struct ref *r;
1311 * If we are deepening a shallow clone we already have these
1312 * objects reachable. Running rev-list here will return with
1313 * a good (0) exit status and we'll bypass the fetch that we
1314 * really need to perform. Claiming failure now will ensure
1315 * we perform the network exchange to deepen our history.
1317 if (deepen)
1318 return -1;
1321 * Similarly, if we need to refetch, we always want to perform a full
1322 * fetch ignoring existing objects.
1324 if (refetch)
1325 return -1;
1329 * check_connected() allows objects to merely be promised, but
1330 * we need all direct targets to exist.
1332 for (r = rm; r; r = r->next) {
1333 if (!repo_has_object_file_with_flags(the_repository, &r->old_oid,
1334 OBJECT_INFO_SKIP_FETCH_OBJECT))
1335 return -1;
1338 opt.quiet = 1;
1339 opt.exclude_hidden_refs_section = "fetch";
1340 return check_connected(iterate_ref_map, &rm, &opt);
1343 static int fetch_and_consume_refs(struct display_state *display_state,
1344 struct transport *transport,
1345 struct ref_transaction *transaction,
1346 struct ref *ref_map,
1347 struct fetch_head *fetch_head,
1348 const struct fetch_config *config)
1350 int connectivity_checked = 1;
1351 int ret;
1354 * We don't need to perform a fetch in case we can already satisfy all
1355 * refs.
1357 ret = check_exist_and_connected(ref_map);
1358 if (ret) {
1359 trace2_region_enter("fetch", "fetch_refs", the_repository);
1360 ret = transport_fetch_refs(transport, ref_map);
1361 trace2_region_leave("fetch", "fetch_refs", the_repository);
1362 if (ret)
1363 goto out;
1364 connectivity_checked = transport->smart_options ?
1365 transport->smart_options->connectivity_checked : 0;
1368 trace2_region_enter("fetch", "consume_refs", the_repository);
1369 ret = store_updated_refs(display_state, transport->remote->name,
1370 connectivity_checked, transaction, ref_map,
1371 fetch_head, config);
1372 trace2_region_leave("fetch", "consume_refs", the_repository);
1374 out:
1375 transport_unlock_pack(transport, 0);
1376 return ret;
1379 static int prune_refs(struct display_state *display_state,
1380 struct refspec *rs,
1381 struct ref_transaction *transaction,
1382 struct ref *ref_map)
1384 int result = 0;
1385 struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
1386 struct strbuf err = STRBUF_INIT;
1387 const char *dangling_msg = dry_run
1388 ? _(" (%s will become dangling)")
1389 : _(" (%s has become dangling)");
1391 if (!dry_run) {
1392 if (transaction) {
1393 for (ref = stale_refs; ref; ref = ref->next) {
1394 result = ref_transaction_delete(transaction, ref->name, NULL,
1395 NULL, 0, "fetch: prune", &err);
1396 if (result)
1397 goto cleanup;
1399 } else {
1400 struct string_list refnames = STRING_LIST_INIT_NODUP;
1402 for (ref = stale_refs; ref; ref = ref->next)
1403 string_list_append(&refnames, ref->name);
1405 result = refs_delete_refs(get_main_ref_store(the_repository),
1406 "fetch: prune", &refnames,
1408 string_list_clear(&refnames, 0);
1412 if (verbosity >= 0) {
1413 int summary_width = transport_summary_width(stale_refs);
1415 for (ref = stale_refs; ref; ref = ref->next) {
1416 display_ref_update(display_state, '-', _("[deleted]"), NULL,
1417 _("(none)"), ref->name,
1418 &ref->new_oid, &ref->old_oid,
1419 summary_width);
1420 refs_warn_dangling_symref(get_main_ref_store(the_repository),
1421 stderr, dangling_msg, ref->name);
1425 cleanup:
1426 strbuf_release(&err);
1427 free_refs(stale_refs);
1428 return result;
1431 static void check_not_current_branch(struct ref *ref_map)
1433 const char *path;
1434 for (; ref_map; ref_map = ref_map->next)
1435 if (ref_map->peer_ref &&
1436 starts_with(ref_map->peer_ref->name, "refs/heads/") &&
1437 (path = branch_checked_out(ref_map->peer_ref->name)))
1438 die(_("refusing to fetch into branch '%s' "
1439 "checked out at '%s'"),
1440 ref_map->peer_ref->name, path);
1443 static int truncate_fetch_head(void)
1445 const char *filename = git_path_fetch_head(the_repository);
1446 FILE *fp = fopen_for_writing(filename);
1448 if (!fp)
1449 return error_errno(_("cannot open '%s'"), filename);
1450 fclose(fp);
1451 return 0;
1454 static void set_option(struct transport *transport, const char *name, const char *value)
1456 int r = transport_set_option(transport, name, value);
1457 if (r < 0)
1458 die(_("option \"%s\" value \"%s\" is not valid for %s"),
1459 name, value, transport->url);
1460 if (r > 0)
1461 warning(_("option \"%s\" is ignored for %s\n"),
1462 name, transport->url);
1466 static int add_oid(const char *refname UNUSED,
1467 const struct object_id *oid,
1468 int flags UNUSED, void *cb_data)
1470 struct oid_array *oids = cb_data;
1472 oid_array_append(oids, oid);
1473 return 0;
1476 static void add_negotiation_tips(struct git_transport_options *smart_options)
1478 struct oid_array *oids = xcalloc(1, sizeof(*oids));
1479 int i;
1481 for (i = 0; i < negotiation_tip.nr; i++) {
1482 const char *s = negotiation_tip.items[i].string;
1483 int old_nr;
1484 if (!has_glob_specials(s)) {
1485 struct object_id oid;
1486 if (repo_get_oid(the_repository, s, &oid))
1487 die(_("%s is not a valid object"), s);
1488 if (!has_object(the_repository, &oid, 0))
1489 die(_("the object %s does not exist"), s);
1490 oid_array_append(oids, &oid);
1491 continue;
1493 old_nr = oids->nr;
1494 refs_for_each_glob_ref(get_main_ref_store(the_repository),
1495 add_oid, s, oids);
1496 if (old_nr == oids->nr)
1497 warning("ignoring --negotiation-tip=%s because it does not match any refs",
1500 smart_options->negotiation_tips = oids;
1503 static struct transport *prepare_transport(struct remote *remote, int deepen)
1505 struct transport *transport;
1507 transport = transport_get(remote, NULL);
1508 transport_set_verbosity(transport, verbosity, progress);
1509 transport->family = family;
1510 if (upload_pack)
1511 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1512 if (keep)
1513 set_option(transport, TRANS_OPT_KEEP, "yes");
1514 if (depth)
1515 set_option(transport, TRANS_OPT_DEPTH, depth);
1516 if (deepen && deepen_since)
1517 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1518 if (deepen && deepen_not.nr)
1519 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1520 (const char *)&deepen_not);
1521 if (deepen_relative)
1522 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1523 if (update_shallow)
1524 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1525 if (refetch)
1526 set_option(transport, TRANS_OPT_REFETCH, "yes");
1527 if (filter_options.choice) {
1528 const char *spec =
1529 expand_list_objects_filter_spec(&filter_options);
1530 set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER, spec);
1531 set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1533 if (negotiation_tip.nr) {
1534 if (transport->smart_options)
1535 add_negotiation_tips(transport->smart_options);
1536 else
1537 warning("ignoring --negotiation-tip because the protocol does not support it");
1539 return transport;
1542 static int backfill_tags(struct display_state *display_state,
1543 struct transport *transport,
1544 struct ref_transaction *transaction,
1545 struct ref *ref_map,
1546 struct fetch_head *fetch_head,
1547 const struct fetch_config *config)
1549 int retcode, cannot_reuse;
1552 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1553 * when remote helper is used (setting it to an empty string
1554 * is not unsetting). We could extend the remote helper
1555 * protocol for that, but for now, just force a new connection
1556 * without deepen-since. Similar story for deepen-not.
1558 cannot_reuse = transport->cannot_reuse ||
1559 deepen_since || deepen_not.nr;
1560 if (cannot_reuse) {
1561 gsecondary = prepare_transport(transport->remote, 0);
1562 transport = gsecondary;
1565 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1566 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1567 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1568 retcode = fetch_and_consume_refs(display_state, transport, transaction, ref_map,
1569 fetch_head, config);
1571 if (gsecondary) {
1572 transport_disconnect(gsecondary);
1573 gsecondary = NULL;
1576 return retcode;
1579 static int do_fetch(struct transport *transport,
1580 struct refspec *rs,
1581 const struct fetch_config *config)
1583 struct ref_transaction *transaction = NULL;
1584 struct ref *ref_map = NULL;
1585 struct display_state display_state = { 0 };
1586 int autotags = (transport->remote->fetch_tags == 1);
1587 int retcode = 0;
1588 const struct ref *remote_refs;
1589 struct transport_ls_refs_options transport_ls_refs_options =
1590 TRANSPORT_LS_REFS_OPTIONS_INIT;
1591 int must_list_refs = 1;
1592 struct fetch_head fetch_head = { 0 };
1593 struct strbuf err = STRBUF_INIT;
1595 if (tags == TAGS_DEFAULT) {
1596 if (transport->remote->fetch_tags == 2)
1597 tags = TAGS_SET;
1598 if (transport->remote->fetch_tags == -1)
1599 tags = TAGS_UNSET;
1602 /* if not appending, truncate FETCH_HEAD */
1603 if (!append && write_fetch_head) {
1604 retcode = truncate_fetch_head();
1605 if (retcode)
1606 goto cleanup;
1609 if (rs->nr) {
1610 int i;
1612 refspec_ref_prefixes(rs, &transport_ls_refs_options.ref_prefixes);
1615 * We can avoid listing refs if all of them are exact
1616 * OIDs
1618 must_list_refs = 0;
1619 for (i = 0; i < rs->nr; i++) {
1620 if (!rs->items[i].exact_sha1) {
1621 must_list_refs = 1;
1622 break;
1625 } else {
1626 struct branch *branch = branch_get(NULL);
1628 if (transport->remote->fetch.nr)
1629 refspec_ref_prefixes(&transport->remote->fetch,
1630 &transport_ls_refs_options.ref_prefixes);
1631 if (branch_has_merge_config(branch) &&
1632 !strcmp(branch->remote_name, transport->remote->name)) {
1633 int i;
1634 for (i = 0; i < branch->merge_nr; i++) {
1635 strvec_push(&transport_ls_refs_options.ref_prefixes,
1636 branch->merge[i]->src);
1641 if (tags == TAGS_SET || tags == TAGS_DEFAULT) {
1642 must_list_refs = 1;
1643 if (transport_ls_refs_options.ref_prefixes.nr)
1644 strvec_push(&transport_ls_refs_options.ref_prefixes,
1645 "refs/tags/");
1648 if (must_list_refs) {
1649 trace2_region_enter("fetch", "remote_refs", the_repository);
1650 remote_refs = transport_get_remote_refs(transport,
1651 &transport_ls_refs_options);
1652 trace2_region_leave("fetch", "remote_refs", the_repository);
1653 } else
1654 remote_refs = NULL;
1656 transport_ls_refs_options_release(&transport_ls_refs_options);
1658 ref_map = get_ref_map(transport->remote, remote_refs, rs,
1659 tags, &autotags);
1660 if (!update_head_ok)
1661 check_not_current_branch(ref_map);
1663 retcode = open_fetch_head(&fetch_head);
1664 if (retcode)
1665 goto cleanup;
1667 display_state_init(&display_state, ref_map, transport->url,
1668 config->display_format);
1670 if (atomic_fetch) {
1671 transaction = ref_store_transaction_begin(get_main_ref_store(the_repository),
1672 &err);
1673 if (!transaction) {
1674 retcode = -1;
1675 goto cleanup;
1679 if (tags == TAGS_DEFAULT && autotags)
1680 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1681 if (prune) {
1683 * We only prune based on refspecs specified
1684 * explicitly (via command line or configuration); we
1685 * don't care whether --tags was specified.
1687 if (rs->nr) {
1688 retcode = prune_refs(&display_state, rs, transaction, ref_map);
1689 } else {
1690 retcode = prune_refs(&display_state, &transport->remote->fetch,
1691 transaction, ref_map);
1693 if (retcode != 0)
1694 retcode = 1;
1697 if (fetch_and_consume_refs(&display_state, transport, transaction, ref_map,
1698 &fetch_head, config)) {
1699 retcode = 1;
1700 goto cleanup;
1704 * If neither --no-tags nor --tags was specified, do automated tag
1705 * following.
1707 if (tags == TAGS_DEFAULT && autotags) {
1708 struct ref *tags_ref_map = NULL, **tail = &tags_ref_map;
1710 find_non_local_tags(remote_refs, transaction, &tags_ref_map, &tail);
1711 if (tags_ref_map) {
1713 * If backfilling of tags fails then we want to tell
1714 * the user so, but we have to continue regardless to
1715 * populate upstream information of the references we
1716 * have already fetched above. The exception though is
1717 * when `--atomic` is passed: in that case we'll abort
1718 * the transaction and don't commit anything.
1720 if (backfill_tags(&display_state, transport, transaction, tags_ref_map,
1721 &fetch_head, config))
1722 retcode = 1;
1725 free_refs(tags_ref_map);
1728 if (transaction) {
1729 if (retcode)
1730 goto cleanup;
1732 retcode = ref_transaction_commit(transaction, &err);
1733 if (retcode) {
1734 ref_transaction_free(transaction);
1735 transaction = NULL;
1736 goto cleanup;
1740 commit_fetch_head(&fetch_head);
1742 if (set_upstream) {
1743 struct branch *branch = branch_get("HEAD");
1744 struct ref *rm;
1745 struct ref *source_ref = NULL;
1748 * We're setting the upstream configuration for the
1749 * current branch. The relevant upstream is the
1750 * fetched branch that is meant to be merged with the
1751 * current one, i.e. the one fetched to FETCH_HEAD.
1753 * When there are several such branches, consider the
1754 * request ambiguous and err on the safe side by doing
1755 * nothing and just emit a warning.
1757 for (rm = ref_map; rm; rm = rm->next) {
1758 if (!rm->peer_ref) {
1759 if (source_ref) {
1760 warning(_("multiple branches detected, incompatible with --set-upstream"));
1761 goto cleanup;
1762 } else {
1763 source_ref = rm;
1767 if (source_ref) {
1768 if (!branch) {
1769 const char *shortname = source_ref->name;
1770 skip_prefix(shortname, "refs/heads/", &shortname);
1772 warning(_("could not set upstream of HEAD to '%s' from '%s' when "
1773 "it does not point to any branch."),
1774 shortname, transport->remote->name);
1775 goto cleanup;
1778 if (!strcmp(source_ref->name, "HEAD") ||
1779 starts_with(source_ref->name, "refs/heads/"))
1780 install_branch_config(0,
1781 branch->name,
1782 transport->remote->name,
1783 source_ref->name);
1784 else if (starts_with(source_ref->name, "refs/remotes/"))
1785 warning(_("not setting upstream for a remote remote-tracking branch"));
1786 else if (starts_with(source_ref->name, "refs/tags/"))
1787 warning(_("not setting upstream for a remote tag"));
1788 else
1789 warning(_("unknown branch type"));
1790 } else {
1791 warning(_("no source branch found;\n"
1792 "you need to specify exactly one branch with the --set-upstream option"));
1796 cleanup:
1797 if (retcode) {
1798 if (err.len) {
1799 error("%s", err.buf);
1800 strbuf_reset(&err);
1802 if (transaction && ref_transaction_abort(transaction, &err) &&
1803 err.len)
1804 error("%s", err.buf);
1807 display_state_release(&display_state);
1808 close_fetch_head(&fetch_head);
1809 strbuf_release(&err);
1810 free_refs(ref_map);
1811 return retcode;
1814 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1816 struct string_list *list = priv;
1817 if (!remote->skip_default_update)
1818 string_list_append(list, remote->name);
1819 return 0;
1822 struct remote_group_data {
1823 const char *name;
1824 struct string_list *list;
1827 static int get_remote_group(const char *key, const char *value,
1828 const struct config_context *ctx UNUSED,
1829 void *priv)
1831 struct remote_group_data *g = priv;
1833 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1834 /* split list by white space */
1835 while (*value) {
1836 size_t wordlen = strcspn(value, " \t\n");
1838 if (wordlen >= 1)
1839 string_list_append_nodup(g->list,
1840 xstrndup(value, wordlen));
1841 value += wordlen + (value[wordlen] != '\0');
1845 return 0;
1848 static int add_remote_or_group(const char *name, struct string_list *list)
1850 int prev_nr = list->nr;
1851 struct remote_group_data g;
1852 g.name = name; g.list = list;
1854 git_config(get_remote_group, &g);
1855 if (list->nr == prev_nr) {
1856 struct remote *remote = remote_get(name);
1857 if (!remote_is_configured(remote, 0))
1858 return 0;
1859 string_list_append(list, remote->name);
1861 return 1;
1864 static void add_options_to_argv(struct strvec *argv,
1865 const struct fetch_config *config)
1867 if (dry_run)
1868 strvec_push(argv, "--dry-run");
1869 if (prune != -1)
1870 strvec_push(argv, prune ? "--prune" : "--no-prune");
1871 if (prune_tags != -1)
1872 strvec_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1873 if (update_head_ok)
1874 strvec_push(argv, "--update-head-ok");
1875 if (force)
1876 strvec_push(argv, "--force");
1877 if (keep)
1878 strvec_push(argv, "--keep");
1879 if (config->recurse_submodules == RECURSE_SUBMODULES_ON)
1880 strvec_push(argv, "--recurse-submodules");
1881 else if (config->recurse_submodules == RECURSE_SUBMODULES_OFF)
1882 strvec_push(argv, "--no-recurse-submodules");
1883 else if (config->recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1884 strvec_push(argv, "--recurse-submodules=on-demand");
1885 if (tags == TAGS_SET)
1886 strvec_push(argv, "--tags");
1887 else if (tags == TAGS_UNSET)
1888 strvec_push(argv, "--no-tags");
1889 if (verbosity >= 2)
1890 strvec_push(argv, "-v");
1891 if (verbosity >= 1)
1892 strvec_push(argv, "-v");
1893 else if (verbosity < 0)
1894 strvec_push(argv, "-q");
1895 if (family == TRANSPORT_FAMILY_IPV4)
1896 strvec_push(argv, "--ipv4");
1897 else if (family == TRANSPORT_FAMILY_IPV6)
1898 strvec_push(argv, "--ipv6");
1899 if (!write_fetch_head)
1900 strvec_push(argv, "--no-write-fetch-head");
1901 if (config->display_format == DISPLAY_FORMAT_PORCELAIN)
1902 strvec_pushf(argv, "--porcelain");
1905 /* Fetch multiple remotes in parallel */
1907 struct parallel_fetch_state {
1908 const char **argv;
1909 struct string_list *remotes;
1910 int next, result;
1911 const struct fetch_config *config;
1914 static int fetch_next_remote(struct child_process *cp,
1915 struct strbuf *out UNUSED,
1916 void *cb, void **task_cb)
1918 struct parallel_fetch_state *state = cb;
1919 char *remote;
1921 if (state->next < 0 || state->next >= state->remotes->nr)
1922 return 0;
1924 remote = state->remotes->items[state->next++].string;
1925 *task_cb = remote;
1927 strvec_pushv(&cp->args, state->argv);
1928 strvec_push(&cp->args, remote);
1929 cp->git_cmd = 1;
1931 if (verbosity >= 0 && state->config->display_format != DISPLAY_FORMAT_PORCELAIN)
1932 printf(_("Fetching %s\n"), remote);
1934 return 1;
1937 static int fetch_failed_to_start(struct strbuf *out UNUSED,
1938 void *cb, void *task_cb)
1940 struct parallel_fetch_state *state = cb;
1941 const char *remote = task_cb;
1943 state->result = error(_("could not fetch %s"), remote);
1945 return 0;
1948 static int fetch_finished(int result, struct strbuf *out,
1949 void *cb, void *task_cb)
1951 struct parallel_fetch_state *state = cb;
1952 const char *remote = task_cb;
1954 if (result) {
1955 strbuf_addf(out, _("could not fetch '%s' (exit code: %d)\n"),
1956 remote, result);
1957 state->result = -1;
1960 return 0;
1963 static int fetch_multiple(struct string_list *list, int max_children,
1964 const struct fetch_config *config)
1966 int i, result = 0;
1967 struct strvec argv = STRVEC_INIT;
1969 if (!append && write_fetch_head) {
1970 int errcode = truncate_fetch_head();
1971 if (errcode)
1972 return errcode;
1976 * Cancel out the fetch.bundleURI config when running subprocesses,
1977 * to avoid fetching from the same bundle list multiple times.
1979 strvec_pushl(&argv, "-c", "fetch.bundleURI=",
1980 "fetch", "--append", "--no-auto-gc",
1981 "--no-write-commit-graph", NULL);
1982 add_options_to_argv(&argv, config);
1984 if (max_children != 1 && list->nr != 1) {
1985 struct parallel_fetch_state state = { argv.v, list, 0, 0, config };
1986 const struct run_process_parallel_opts opts = {
1987 .tr2_category = "fetch",
1988 .tr2_label = "parallel/fetch",
1990 .processes = max_children,
1992 .get_next_task = &fetch_next_remote,
1993 .start_failure = &fetch_failed_to_start,
1994 .task_finished = &fetch_finished,
1995 .data = &state,
1998 strvec_push(&argv, "--end-of-options");
2000 run_processes_parallel(&opts);
2001 result = state.result;
2002 } else
2003 for (i = 0; i < list->nr; i++) {
2004 const char *name = list->items[i].string;
2005 struct child_process cmd = CHILD_PROCESS_INIT;
2007 strvec_pushv(&cmd.args, argv.v);
2008 strvec_push(&cmd.args, name);
2009 if (verbosity >= 0 && config->display_format != DISPLAY_FORMAT_PORCELAIN)
2010 printf(_("Fetching %s\n"), name);
2011 cmd.git_cmd = 1;
2012 if (run_command(&cmd)) {
2013 error(_("could not fetch %s"), name);
2014 result = 1;
2018 strvec_clear(&argv);
2019 return !!result;
2023 * Fetching from the promisor remote should use the given filter-spec
2024 * or inherit the default filter-spec from the config.
2026 static inline void fetch_one_setup_partial(struct remote *remote)
2029 * Explicit --no-filter argument overrides everything, regardless
2030 * of any prior partial clones and fetches.
2032 if (filter_options.no_filter)
2033 return;
2036 * If no prior partial clone/fetch and the current fetch DID NOT
2037 * request a partial-fetch, do a normal fetch.
2039 if (!repo_has_promisor_remote(the_repository) && !filter_options.choice)
2040 return;
2043 * If this is a partial-fetch request, we enable partial on
2044 * this repo if not already enabled and remember the given
2045 * filter-spec as the default for subsequent fetches to this
2046 * remote if there is currently no default filter-spec.
2048 if (filter_options.choice) {
2049 partial_clone_register(remote->name, &filter_options);
2050 return;
2054 * Do a partial-fetch from the promisor remote using either the
2055 * explicitly given filter-spec or inherit the filter-spec from
2056 * the config.
2058 if (!filter_options.choice)
2059 partial_clone_get_default_filter_spec(&filter_options, remote->name);
2060 return;
2063 static int fetch_one(struct remote *remote, int argc, const char **argv,
2064 int prune_tags_ok, int use_stdin_refspecs,
2065 const struct fetch_config *config)
2067 struct refspec rs = REFSPEC_INIT_FETCH;
2068 int i;
2069 int exit_code;
2070 int maybe_prune_tags;
2071 int remote_via_config = remote_is_configured(remote, 0);
2073 if (!remote)
2074 die(_("no remote repository specified; please specify either a URL or a\n"
2075 "remote name from which new revisions should be fetched"));
2077 gtransport = prepare_transport(remote, 1);
2079 if (prune < 0) {
2080 /* no command line request */
2081 if (0 <= remote->prune)
2082 prune = remote->prune;
2083 else if (0 <= config->prune)
2084 prune = config->prune;
2085 else
2086 prune = PRUNE_BY_DEFAULT;
2089 if (prune_tags < 0) {
2090 /* no command line request */
2091 if (0 <= remote->prune_tags)
2092 prune_tags = remote->prune_tags;
2093 else if (0 <= config->prune_tags)
2094 prune_tags = config->prune_tags;
2095 else
2096 prune_tags = PRUNE_TAGS_BY_DEFAULT;
2099 maybe_prune_tags = prune_tags_ok && prune_tags;
2100 if (maybe_prune_tags && remote_via_config)
2101 refspec_append(&remote->fetch, TAG_REFSPEC);
2103 if (maybe_prune_tags && (argc || !remote_via_config))
2104 refspec_append(&rs, TAG_REFSPEC);
2106 for (i = 0; i < argc; i++) {
2107 if (!strcmp(argv[i], "tag")) {
2108 i++;
2109 if (i >= argc)
2110 die(_("you need to specify a tag name"));
2112 refspec_appendf(&rs, "refs/tags/%s:refs/tags/%s",
2113 argv[i], argv[i]);
2114 } else {
2115 refspec_append(&rs, argv[i]);
2119 if (use_stdin_refspecs) {
2120 struct strbuf line = STRBUF_INIT;
2121 while (strbuf_getline_lf(&line, stdin) != EOF)
2122 refspec_append(&rs, line.buf);
2123 strbuf_release(&line);
2126 if (server_options.nr)
2127 gtransport->server_options = &server_options;
2129 sigchain_push_common(unlock_pack_on_signal);
2130 atexit(unlock_pack_atexit);
2131 sigchain_push(SIGPIPE, SIG_IGN);
2132 exit_code = do_fetch(gtransport, &rs, config);
2133 sigchain_pop(SIGPIPE);
2134 refspec_clear(&rs);
2135 transport_disconnect(gtransport);
2136 gtransport = NULL;
2137 return exit_code;
2140 int cmd_fetch(int argc, const char **argv, const char *prefix)
2142 struct fetch_config config = {
2143 .display_format = DISPLAY_FORMAT_FULL,
2144 .prune = -1,
2145 .prune_tags = -1,
2146 .show_forced_updates = 1,
2147 .recurse_submodules = RECURSE_SUBMODULES_DEFAULT,
2148 .parallel = 1,
2149 .submodule_fetch_jobs = -1,
2151 const char *submodule_prefix = "";
2152 const char *bundle_uri;
2153 struct string_list list = STRING_LIST_INIT_DUP;
2154 struct remote *remote = NULL;
2155 int all = -1, multiple = 0;
2156 int result = 0;
2157 int prune_tags_ok = 1;
2158 int enable_auto_gc = 1;
2159 int unshallow = 0;
2160 int max_jobs = -1;
2161 int recurse_submodules_cli = RECURSE_SUBMODULES_DEFAULT;
2162 int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
2163 int fetch_write_commit_graph = -1;
2164 int stdin_refspecs = 0;
2165 int negotiate_only = 0;
2166 int porcelain = 0;
2167 int i;
2169 struct option builtin_fetch_options[] = {
2170 OPT__VERBOSITY(&verbosity),
2171 OPT_BOOL(0, "all", &all,
2172 N_("fetch from all remotes")),
2173 OPT_BOOL(0, "set-upstream", &set_upstream,
2174 N_("set upstream for git pull/fetch")),
2175 OPT_BOOL('a', "append", &append,
2176 N_("append to .git/FETCH_HEAD instead of overwriting")),
2177 OPT_BOOL(0, "atomic", &atomic_fetch,
2178 N_("use atomic transaction to update references")),
2179 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
2180 N_("path to upload pack on remote end")),
2181 OPT__FORCE(&force, N_("force overwrite of local reference"), 0),
2182 OPT_BOOL('m', "multiple", &multiple,
2183 N_("fetch from multiple remotes")),
2184 OPT_SET_INT('t', "tags", &tags,
2185 N_("fetch all tags and associated objects"), TAGS_SET),
2186 OPT_SET_INT('n', NULL, &tags,
2187 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
2188 OPT_INTEGER('j', "jobs", &max_jobs,
2189 N_("number of submodules fetched in parallel")),
2190 OPT_BOOL(0, "prefetch", &prefetch,
2191 N_("modify the refspec to place all refs within refs/prefetch/")),
2192 OPT_BOOL('p', "prune", &prune,
2193 N_("prune remote-tracking branches no longer on remote")),
2194 OPT_BOOL('P', "prune-tags", &prune_tags,
2195 N_("prune local tags no longer on remote and clobber changed tags")),
2196 OPT_CALLBACK_F(0, "recurse-submodules", &recurse_submodules_cli, N_("on-demand"),
2197 N_("control recursive fetching of submodules"),
2198 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules),
2199 OPT_BOOL(0, "dry-run", &dry_run,
2200 N_("dry run")),
2201 OPT_BOOL(0, "porcelain", &porcelain, N_("machine-readable output")),
2202 OPT_BOOL(0, "write-fetch-head", &write_fetch_head,
2203 N_("write fetched references to the FETCH_HEAD file")),
2204 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
2205 OPT_BOOL('u', "update-head-ok", &update_head_ok,
2206 N_("allow updating of HEAD ref")),
2207 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
2208 OPT_STRING(0, "depth", &depth, N_("depth"),
2209 N_("deepen history of shallow clone")),
2210 OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
2211 N_("deepen history of shallow repository based on time")),
2212 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
2213 N_("deepen history of shallow clone, excluding rev")),
2214 OPT_INTEGER(0, "deepen", &deepen_relative,
2215 N_("deepen history of shallow clone")),
2216 OPT_SET_INT_F(0, "unshallow", &unshallow,
2217 N_("convert to a complete repository"),
2218 1, PARSE_OPT_NONEG),
2219 OPT_SET_INT_F(0, "refetch", &refetch,
2220 N_("re-fetch without negotiating common commits"),
2221 1, PARSE_OPT_NONEG),
2222 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
2223 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
2224 OPT_CALLBACK_F(0, "recurse-submodules-default",
2225 &recurse_submodules_default, N_("on-demand"),
2226 N_("default for recursive fetching of submodules "
2227 "(lower priority than config files)"),
2228 PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules),
2229 OPT_BOOL(0, "update-shallow", &update_shallow,
2230 N_("accept refs that update .git/shallow")),
2231 OPT_CALLBACK_F(0, "refmap", &refmap, N_("refmap"),
2232 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg),
2233 OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
2234 OPT_IPVERSION(&family),
2235 OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip, N_("revision"),
2236 N_("report that we have only objects reachable from this object")),
2237 OPT_BOOL(0, "negotiate-only", &negotiate_only,
2238 N_("do not fetch a packfile; instead, print ancestors of negotiation tips")),
2239 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
2240 OPT_BOOL(0, "auto-maintenance", &enable_auto_gc,
2241 N_("run 'maintenance --auto' after fetching")),
2242 OPT_BOOL(0, "auto-gc", &enable_auto_gc,
2243 N_("run 'maintenance --auto' after fetching")),
2244 OPT_BOOL(0, "show-forced-updates", &config.show_forced_updates,
2245 N_("check for forced-updates on all updated branches")),
2246 OPT_BOOL(0, "write-commit-graph", &fetch_write_commit_graph,
2247 N_("write the commit-graph after fetching")),
2248 OPT_BOOL(0, "stdin", &stdin_refspecs,
2249 N_("accept refspecs from stdin")),
2250 OPT_END()
2253 packet_trace_identity("fetch");
2255 /* Record the command line for the reflog */
2256 strbuf_addstr(&default_rla, "fetch");
2257 for (i = 1; i < argc; i++) {
2258 /* This handles non-URLs gracefully */
2259 char *anon = transport_anonymize_url(argv[i]);
2261 strbuf_addf(&default_rla, " %s", anon);
2262 free(anon);
2265 git_config(git_fetch_config, &config);
2266 if (the_repository->gitdir) {
2267 prepare_repo_settings(the_repository);
2268 the_repository->settings.command_requires_full_index = 0;
2271 argc = parse_options(argc, argv, prefix,
2272 builtin_fetch_options, builtin_fetch_usage, 0);
2274 if (recurse_submodules_cli != RECURSE_SUBMODULES_DEFAULT)
2275 config.recurse_submodules = recurse_submodules_cli;
2277 if (negotiate_only) {
2278 switch (recurse_submodules_cli) {
2279 case RECURSE_SUBMODULES_OFF:
2280 case RECURSE_SUBMODULES_DEFAULT:
2282 * --negotiate-only should never recurse into
2283 * submodules. Skip it by setting recurse_submodules to
2284 * RECURSE_SUBMODULES_OFF.
2286 config.recurse_submodules = RECURSE_SUBMODULES_OFF;
2287 break;
2289 default:
2290 die(_("options '%s' and '%s' cannot be used together"),
2291 "--negotiate-only", "--recurse-submodules");
2295 if (config.recurse_submodules != RECURSE_SUBMODULES_OFF) {
2296 int *sfjc = config.submodule_fetch_jobs == -1
2297 ? &config.submodule_fetch_jobs : NULL;
2298 int *rs = config.recurse_submodules == RECURSE_SUBMODULES_DEFAULT
2299 ? &config.recurse_submodules : NULL;
2301 fetch_config_from_gitmodules(sfjc, rs);
2305 if (porcelain) {
2306 switch (recurse_submodules_cli) {
2307 case RECURSE_SUBMODULES_OFF:
2308 case RECURSE_SUBMODULES_DEFAULT:
2310 * Reference updates in submodules would be ambiguous
2311 * in porcelain mode, so we reject this combination.
2313 config.recurse_submodules = RECURSE_SUBMODULES_OFF;
2314 break;
2316 default:
2317 die(_("options '%s' and '%s' cannot be used together"),
2318 "--porcelain", "--recurse-submodules");
2321 config.display_format = DISPLAY_FORMAT_PORCELAIN;
2324 if (negotiate_only && !negotiation_tip.nr)
2325 die(_("--negotiate-only needs one or more --negotiation-tip=*"));
2327 if (deepen_relative) {
2328 if (deepen_relative < 0)
2329 die(_("negative depth in --deepen is not supported"));
2330 if (depth)
2331 die(_("options '%s' and '%s' cannot be used together"), "--deepen", "--depth");
2332 depth = xstrfmt("%d", deepen_relative);
2334 if (unshallow) {
2335 if (depth)
2336 die(_("options '%s' and '%s' cannot be used together"), "--depth", "--unshallow");
2337 else if (!is_repository_shallow(the_repository))
2338 die(_("--unshallow on a complete repository does not make sense"));
2339 else
2340 depth = xstrfmt("%d", INFINITE_DEPTH);
2343 /* no need to be strict, transport_set_option() will validate it again */
2344 if (depth && atoi(depth) < 1)
2345 die(_("depth %s is not a positive number"), depth);
2346 if (depth || deepen_since || deepen_not.nr)
2347 deepen = 1;
2349 /* FETCH_HEAD never gets updated in --dry-run mode */
2350 if (dry_run)
2351 write_fetch_head = 0;
2353 if (!max_jobs)
2354 max_jobs = online_cpus();
2356 if (!git_config_get_string_tmp("fetch.bundleuri", &bundle_uri) &&
2357 fetch_bundle_uri(the_repository, bundle_uri, NULL))
2358 warning(_("failed to fetch bundles from '%s'"), bundle_uri);
2360 if (all < 0) {
2362 * no --[no-]all given;
2363 * only use config option if no remote was explicitly specified
2365 all = (!argc) ? config.all : 0;
2368 if (all) {
2369 if (argc == 1)
2370 die(_("fetch --all does not take a repository argument"));
2371 else if (argc > 1)
2372 die(_("fetch --all does not make sense with refspecs"));
2374 (void) for_each_remote(get_one_remote_for_fetch, &list);
2376 /* do not do fetch_multiple() of one */
2377 if (list.nr == 1)
2378 remote = remote_get(list.items[0].string);
2379 } else if (argc == 0) {
2380 /* No arguments -- use default remote */
2381 remote = remote_get(NULL);
2382 } else if (multiple) {
2383 /* All arguments are assumed to be remotes or groups */
2384 for (i = 0; i < argc; i++)
2385 if (!add_remote_or_group(argv[i], &list))
2386 die(_("no such remote or remote group: %s"),
2387 argv[i]);
2388 } else {
2389 /* Single remote or group */
2390 (void) add_remote_or_group(argv[0], &list);
2391 if (list.nr > 1) {
2392 /* More than one remote */
2393 if (argc > 1)
2394 die(_("fetching a group and specifying refspecs does not make sense"));
2395 } else {
2396 /* Zero or one remotes */
2397 remote = remote_get(argv[0]);
2398 prune_tags_ok = (argc == 1);
2399 argc--;
2400 argv++;
2403 string_list_remove_duplicates(&list, 0);
2405 if (negotiate_only) {
2406 struct oidset acked_commits = OIDSET_INIT;
2407 struct oidset_iter iter;
2408 const struct object_id *oid;
2410 if (!remote)
2411 die(_("must supply remote when using --negotiate-only"));
2412 gtransport = prepare_transport(remote, 1);
2413 if (gtransport->smart_options) {
2414 gtransport->smart_options->acked_commits = &acked_commits;
2415 } else {
2416 warning(_("protocol does not support --negotiate-only, exiting"));
2417 result = 1;
2418 goto cleanup;
2420 if (server_options.nr)
2421 gtransport->server_options = &server_options;
2422 result = transport_fetch_refs(gtransport, NULL);
2424 oidset_iter_init(&acked_commits, &iter);
2425 while ((oid = oidset_iter_next(&iter)))
2426 printf("%s\n", oid_to_hex(oid));
2427 oidset_clear(&acked_commits);
2428 } else if (remote) {
2429 if (filter_options.choice || repo_has_promisor_remote(the_repository))
2430 fetch_one_setup_partial(remote);
2431 result = fetch_one(remote, argc, argv, prune_tags_ok, stdin_refspecs,
2432 &config);
2433 } else {
2434 int max_children = max_jobs;
2436 if (filter_options.choice)
2437 die(_("--filter can only be used with the remote "
2438 "configured in extensions.partialclone"));
2440 if (atomic_fetch)
2441 die(_("--atomic can only be used when fetching "
2442 "from one remote"));
2444 if (stdin_refspecs)
2445 die(_("--stdin can only be used when fetching "
2446 "from one remote"));
2448 if (max_children < 0)
2449 max_children = config.parallel;
2451 /* TODO should this also die if we have a previous partial-clone? */
2452 result = fetch_multiple(&list, max_children, &config);
2456 * This is only needed after fetch_one(), which does not fetch
2457 * submodules by itself.
2459 * When we fetch from multiple remotes, fetch_multiple() has
2460 * already updated submodules to grab commits necessary for
2461 * the fetched history from each remote, so there is no need
2462 * to fetch submodules from here.
2464 if (!result && remote && (config.recurse_submodules != RECURSE_SUBMODULES_OFF)) {
2465 struct strvec options = STRVEC_INIT;
2466 int max_children = max_jobs;
2468 if (max_children < 0)
2469 max_children = config.submodule_fetch_jobs;
2470 if (max_children < 0)
2471 max_children = config.parallel;
2473 add_options_to_argv(&options, &config);
2474 result = fetch_submodules(the_repository,
2475 &options,
2476 submodule_prefix,
2477 config.recurse_submodules,
2478 recurse_submodules_default,
2479 verbosity < 0,
2480 max_children);
2481 strvec_clear(&options);
2485 * Skip irrelevant tasks because we know objects were not
2486 * fetched.
2488 * NEEDSWORK: as a future optimization, we can return early
2489 * whenever objects were not fetched e.g. if we already have all
2490 * of them.
2492 if (negotiate_only)
2493 goto cleanup;
2495 prepare_repo_settings(the_repository);
2496 if (fetch_write_commit_graph > 0 ||
2497 (fetch_write_commit_graph < 0 &&
2498 the_repository->settings.fetch_write_commit_graph)) {
2499 int commit_graph_flags = COMMIT_GRAPH_WRITE_SPLIT;
2501 if (progress)
2502 commit_graph_flags |= COMMIT_GRAPH_WRITE_PROGRESS;
2504 write_commit_graph_reachable(the_repository->objects->odb,
2505 commit_graph_flags,
2506 NULL);
2509 if (enable_auto_gc) {
2510 if (refetch) {
2512 * Hint auto-maintenance strongly to encourage repacking,
2513 * but respect config settings disabling it.
2515 int opt_val;
2516 if (git_config_get_int("gc.autopacklimit", &opt_val))
2517 opt_val = -1;
2518 if (opt_val != 0)
2519 git_config_push_parameter("gc.autoPackLimit=1");
2521 if (git_config_get_int("maintenance.incremental-repack.auto", &opt_val))
2522 opt_val = -1;
2523 if (opt_val != 0)
2524 git_config_push_parameter("maintenance.incremental-repack.auto=-1");
2526 run_auto_maintenance(verbosity < 0);
2529 cleanup:
2530 string_list_clear(&list, 0);
2531 return result;