9 #include "string-list.h"
11 #include "transport.h"
12 #include "run-command.h"
13 #include "parse-options.h"
15 #include "submodule-config.h"
16 #include "submodule.h"
17 #include "connected.h"
18 #include "argv-array.h"
21 static const char * const builtin_fetch_usage[] = {
22 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
23 N_("git fetch [<options>] <group>"),
24 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
25 N_("git fetch --all [<options>]"),
35 static int fetch_prune_config = -1; /* unspecified */
36 static int prune = -1; /* unspecified */
37 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
39 static int all, append, dry_run, force, keep, multiple, update_head_ok, verbosity, deepen_relative;
40 static int progress = -1, recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
41 static int tags = TAGS_DEFAULT, unshallow, update_shallow, deepen;
42 static int max_children = -1;
43 static enum transport_family family;
44 static const char *depth;
45 static const char *deepen_since;
46 static const char *upload_pack;
47 static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
48 static struct strbuf default_rla = STRBUF_INIT;
49 static struct transport *gtransport;
50 static struct transport *gsecondary;
51 static const char *submodule_prefix = "";
52 static const char *recurse_submodules_default;
53 static int shown_url = 0;
54 static int refmap_alloc, refmap_nr;
55 static const char **refmap_array;
57 static int option_parse_recurse_submodules(const struct option *opt,
58 const char *arg, int unset)
61 recurse_submodules = RECURSE_SUBMODULES_OFF;
64 recurse_submodules = parse_fetch_recurse_submodules_arg(opt->long_name, arg);
66 recurse_submodules = RECURSE_SUBMODULES_ON;
71 static int git_fetch_config(const char *k, const char *v, void *cb)
73 if (!strcmp(k, "fetch.prune")) {
74 fetch_prune_config = git_config_bool(k, v);
77 return git_default_config(k, v, cb);
80 static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
82 ALLOC_GROW(refmap_array, refmap_nr + 1, refmap_alloc);
85 * "git fetch --refmap='' origin foo"
86 * can be used to tell the command not to store anywhere
89 refmap_array[refmap_nr++] = arg;
93 static struct option builtin_fetch_options[] = {
94 OPT__VERBOSITY(&verbosity),
95 OPT_BOOL(0, "all", &all,
96 N_("fetch from all remotes")),
97 OPT_BOOL('a', "append", &append,
98 N_("append to .git/FETCH_HEAD instead of overwriting")),
99 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
100 N_("path to upload pack on remote end")),
101 OPT__FORCE(&force, N_("force overwrite of local branch")),
102 OPT_BOOL('m', "multiple", &multiple,
103 N_("fetch from multiple remotes")),
104 OPT_SET_INT('t', "tags", &tags,
105 N_("fetch all tags and associated objects"), TAGS_SET),
106 OPT_SET_INT('n', NULL, &tags,
107 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
108 OPT_INTEGER('j', "jobs", &max_children,
109 N_("number of submodules fetched in parallel")),
110 OPT_BOOL('p', "prune", &prune,
111 N_("prune remote-tracking branches no longer on remote")),
112 { OPTION_CALLBACK, 0, "recurse-submodules", NULL, N_("on-demand"),
113 N_("control recursive fetching of submodules"),
114 PARSE_OPT_OPTARG, option_parse_recurse_submodules },
115 OPT_BOOL(0, "dry-run", &dry_run,
117 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
118 OPT_BOOL('u', "update-head-ok", &update_head_ok,
119 N_("allow updating of HEAD ref")),
120 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
121 OPT_STRING(0, "depth", &depth, N_("depth"),
122 N_("deepen history of shallow clone")),
123 OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
124 N_("deepen history of shallow repository based on time")),
125 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
126 N_("deepen history of shallow clone, excluding rev")),
127 OPT_INTEGER(0, "deepen", &deepen_relative,
128 N_("deepen history of shallow clone")),
129 { OPTION_SET_INT, 0, "unshallow", &unshallow, NULL,
130 N_("convert to a complete repository"),
131 PARSE_OPT_NONEG | PARSE_OPT_NOARG, NULL, 1 },
132 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
133 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
134 { OPTION_STRING, 0, "recurse-submodules-default",
135 &recurse_submodules_default, NULL,
136 N_("default mode for recursion"), PARSE_OPT_HIDDEN },
137 OPT_BOOL(0, "update-shallow", &update_shallow,
138 N_("accept refs that update .git/shallow")),
139 { OPTION_CALLBACK, 0, "refmap", NULL, N_("refmap"),
140 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg },
141 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
142 TRANSPORT_FAMILY_IPV4),
143 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
144 TRANSPORT_FAMILY_IPV6),
148 static void unlock_pack(void)
151 transport_unlock_pack(gtransport);
153 transport_unlock_pack(gsecondary);
156 static void unlock_pack_on_signal(int signo)
163 static void add_merge_config(struct ref **head,
164 const struct ref *remote_refs,
165 struct branch *branch,
170 for (i = 0; i < branch->merge_nr; i++) {
171 struct ref *rm, **old_tail = *tail;
172 struct refspec refspec;
174 for (rm = *head; rm; rm = rm->next) {
175 if (branch_merge_matches(branch, i, rm->name)) {
176 rm->fetch_head_status = FETCH_HEAD_MERGE;
184 * Not fetched to a remote-tracking branch? We need to fetch
185 * it anyway to allow this branch's "branch.$name.merge"
186 * to be honored by 'git pull', but we do not have to
187 * fail if branch.$name.merge is misconfigured to point
188 * at a nonexisting branch. If we were indeed called by
189 * 'git pull', it will notice the misconfiguration because
190 * there is no entry in the resulting FETCH_HEAD marked
193 memset(&refspec, 0, sizeof(refspec));
194 refspec.src = branch->merge[i]->src;
195 get_fetch_map(remote_refs, &refspec, tail, 1);
196 for (rm = *old_tail; rm; rm = rm->next)
197 rm->fetch_head_status = FETCH_HEAD_MERGE;
201 static int add_existing(const char *refname, const struct object_id *oid,
202 int flag, void *cbdata)
204 struct string_list *list = (struct string_list *)cbdata;
205 struct string_list_item *item = string_list_insert(list, refname);
206 struct object_id *old_oid = xmalloc(sizeof(*old_oid));
208 oidcpy(old_oid, oid);
209 item->util = old_oid;
213 static int will_fetch(struct ref **head, const unsigned char *sha1)
215 struct ref *rm = *head;
217 if (!hashcmp(rm->old_oid.hash, sha1))
224 static void find_non_local_tags(struct transport *transport,
228 struct string_list existing_refs = STRING_LIST_INIT_DUP;
229 struct string_list remote_refs = STRING_LIST_INIT_NODUP;
230 const struct ref *ref;
231 struct string_list_item *item = NULL;
233 for_each_ref(add_existing, &existing_refs);
234 for (ref = transport_get_remote_refs(transport); ref; ref = ref->next) {
235 if (!starts_with(ref->name, "refs/tags/"))
239 * The peeled ref always follows the matching base
240 * ref, so if we see a peeled ref that we don't want
241 * to fetch then we can mark the ref entry in the list
242 * as one to ignore by setting util to NULL.
244 if (ends_with(ref->name, "^{}")) {
246 !has_object_file_with_flags(&ref->old_oid, HAS_SHA1_QUICK) &&
247 !will_fetch(head, ref->old_oid.hash) &&
248 !has_sha1_file_with_flags(item->util, HAS_SHA1_QUICK) &&
249 !will_fetch(head, item->util))
256 * If item is non-NULL here, then we previously saw a
257 * ref not followed by a peeled reference, so we need
258 * to check if it is a lightweight tag that we want to
262 !has_sha1_file_with_flags(item->util, HAS_SHA1_QUICK) &&
263 !will_fetch(head, item->util))
268 /* skip duplicates and refs that we already have */
269 if (string_list_has_string(&remote_refs, ref->name) ||
270 string_list_has_string(&existing_refs, ref->name))
273 item = string_list_insert(&remote_refs, ref->name);
274 item->util = (void *)&ref->old_oid;
276 string_list_clear(&existing_refs, 1);
279 * We may have a final lightweight tag that needs to be
280 * checked to see if it needs fetching.
283 !has_sha1_file_with_flags(item->util, HAS_SHA1_QUICK) &&
284 !will_fetch(head, item->util))
288 * For all the tags in the remote_refs string list,
289 * add them to the list of refs to be fetched
291 for_each_string_list_item(item, &remote_refs) {
292 /* Unless we have already decided to ignore this item... */
295 struct ref *rm = alloc_ref(item->string);
296 rm->peer_ref = alloc_ref(item->string);
297 oidcpy(&rm->old_oid, item->util);
303 string_list_clear(&remote_refs, 0);
306 static struct ref *get_ref_map(struct transport *transport,
307 struct refspec *refspecs, int refspec_count,
308 int tags, int *autotags)
312 struct ref *ref_map = NULL;
313 struct ref **tail = &ref_map;
315 /* opportunistically-updated references: */
316 struct ref *orefs = NULL, **oref_tail = &orefs;
318 const struct ref *remote_refs = transport_get_remote_refs(transport);
321 struct refspec *fetch_refspec;
322 int fetch_refspec_nr;
324 for (i = 0; i < refspec_count; i++) {
325 get_fetch_map(remote_refs, &refspecs[i], &tail, 0);
326 if (refspecs[i].dst && refspecs[i].dst[0])
329 /* Merge everything on the command line (but not --tags) */
330 for (rm = ref_map; rm; rm = rm->next)
331 rm->fetch_head_status = FETCH_HEAD_MERGE;
334 * For any refs that we happen to be fetching via
335 * command-line arguments, the destination ref might
336 * have been missing or have been different than the
337 * remote-tracking ref that would be derived from the
338 * configured refspec. In these cases, we want to
339 * take the opportunity to update their configured
340 * remote-tracking reference. However, we do not want
341 * to mention these entries in FETCH_HEAD at all, as
342 * they would simply be duplicates of existing
343 * entries, so we set them FETCH_HEAD_IGNORE below.
345 * We compute these entries now, based only on the
346 * refspecs specified on the command line. But we add
347 * them to the list following the refspecs resulting
348 * from the tags option so that one of the latter,
349 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
350 * by ref_remove_duplicates() in favor of one of these
351 * opportunistic entries with FETCH_HEAD_IGNORE.
354 fetch_refspec = parse_fetch_refspec(refmap_nr, refmap_array);
355 fetch_refspec_nr = refmap_nr;
357 fetch_refspec = transport->remote->fetch;
358 fetch_refspec_nr = transport->remote->fetch_refspec_nr;
361 for (i = 0; i < fetch_refspec_nr; i++)
362 get_fetch_map(ref_map, &fetch_refspec[i], &oref_tail, 1);
363 } else if (refmap_array) {
364 die("--refmap option is only meaningful with command-line refspec(s).");
366 /* Use the defaults */
367 struct remote *remote = transport->remote;
368 struct branch *branch = branch_get(NULL);
369 int has_merge = branch_has_merge_config(branch);
371 (remote->fetch_refspec_nr ||
372 /* Note: has_merge implies non-NULL branch->remote_name */
373 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
374 for (i = 0; i < remote->fetch_refspec_nr; i++) {
375 get_fetch_map(remote_refs, &remote->fetch[i], &tail, 0);
376 if (remote->fetch[i].dst &&
377 remote->fetch[i].dst[0])
379 if (!i && !has_merge && ref_map &&
380 !remote->fetch[0].pattern)
381 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
384 * if the remote we're fetching from is the same
385 * as given in branch.<name>.remote, we add the
386 * ref given in branch.<name>.merge, too.
388 * Note: has_merge implies non-NULL branch->remote_name
391 !strcmp(branch->remote_name, remote->name))
392 add_merge_config(&ref_map, remote_refs, branch, &tail);
394 ref_map = get_remote_ref(remote_refs, "HEAD");
396 die(_("Couldn't find remote ref HEAD"));
397 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
398 tail = &ref_map->next;
402 if (tags == TAGS_SET)
403 /* also fetch all tags */
404 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
405 else if (tags == TAGS_DEFAULT && *autotags)
406 find_non_local_tags(transport, &ref_map, &tail);
408 /* Now append any refs to be updated opportunistically: */
410 for (rm = orefs; rm; rm = rm->next) {
411 rm->fetch_head_status = FETCH_HEAD_IGNORE;
415 return ref_remove_duplicates(ref_map);
418 #define STORE_REF_ERROR_OTHER 1
419 #define STORE_REF_ERROR_DF_CONFLICT 2
421 static int s_update_ref(const char *action,
426 char *rla = getenv("GIT_REFLOG_ACTION");
427 struct ref_transaction *transaction;
428 struct strbuf err = STRBUF_INIT;
429 int ret, df_conflict = 0;
434 rla = default_rla.buf;
435 msg = xstrfmt("%s: %s", rla, action);
437 transaction = ref_transaction_begin(&err);
439 ref_transaction_update(transaction, ref->name,
441 check_old ? ref->old_oid.hash : NULL,
445 ret = ref_transaction_commit(transaction, &err);
447 df_conflict = (ret == TRANSACTION_NAME_CONFLICT);
451 ref_transaction_free(transaction);
452 strbuf_release(&err);
456 ref_transaction_free(transaction);
457 error("%s", err.buf);
458 strbuf_release(&err);
460 return df_conflict ? STORE_REF_ERROR_DF_CONFLICT
461 : STORE_REF_ERROR_OTHER;
464 static int refcol_width = 10;
465 static int compact_format;
467 static void adjust_refcol_width(const struct ref *ref)
469 int max, rlen, llen, len;
471 /* uptodate lines are only shown on high verbosity level */
472 if (!verbosity && !oidcmp(&ref->peer_ref->old_oid, &ref->old_oid))
475 max = term_columns();
476 rlen = utf8_strwidth(prettify_refname(ref->name));
478 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
481 * rough estimation to see if the output line is too long and
482 * should not be counted (we can't do precise calculation
483 * anyway because we don't know if the error explanation part
484 * will be printed in update_local_ref)
486 if (compact_format) {
490 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
495 * Not precise calculation for compact mode because '*' can
496 * appear on the left hand side of '->' and shrink the column
499 if (refcol_width < rlen)
503 static void prepare_format_display(struct ref *ref_map)
506 const char *format = "full";
508 git_config_get_string_const("fetch.output", &format);
509 if (!strcasecmp(format, "full"))
511 else if (!strcasecmp(format, "compact"))
514 die(_("configuration fetch.output contains invalid value %s"),
517 for (rm = ref_map; rm; rm = rm->next) {
518 if (rm->status == REF_STATUS_REJECT_SHALLOW ||
520 !strcmp(rm->name, "HEAD"))
523 adjust_refcol_width(rm);
527 static void print_remote_to_local(struct strbuf *display,
528 const char *remote, const char *local)
530 strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
533 static int find_and_replace(struct strbuf *haystack,
535 const char *placeholder)
537 const char *p = strstr(haystack->buf, needle);
543 if (p > haystack->buf && p[-1] != '/')
547 nlen = strlen(needle);
548 if (plen > nlen && p[nlen] != '/')
551 strbuf_splice(haystack, p - haystack->buf, nlen,
552 placeholder, strlen(placeholder));
556 static void print_compact(struct strbuf *display,
557 const char *remote, const char *local)
559 struct strbuf r = STRBUF_INIT;
560 struct strbuf l = STRBUF_INIT;
562 if (!strcmp(remote, local)) {
563 strbuf_addf(display, "%-*s -> *", refcol_width, remote);
567 strbuf_addstr(&r, remote);
568 strbuf_addstr(&l, local);
570 if (!find_and_replace(&r, local, "*"))
571 find_and_replace(&l, remote, "*");
572 print_remote_to_local(display, r.buf, l.buf);
578 static void format_display(struct strbuf *display, char code,
579 const char *summary, const char *error,
580 const char *remote, const char *local,
583 int width = (summary_width + strlen(summary) - gettext_width(summary));
585 strbuf_addf(display, "%c %-*s ", code, width, summary);
587 print_remote_to_local(display, remote, local);
589 print_compact(display, remote, local);
591 strbuf_addf(display, " (%s)", error);
594 static int update_local_ref(struct ref *ref,
596 const struct ref *remote_ref,
597 struct strbuf *display,
600 struct commit *current = NULL, *updated;
601 enum object_type type;
602 struct branch *current_branch = branch_get(NULL);
603 const char *pretty_ref = prettify_refname(ref->name);
605 type = sha1_object_info(ref->new_oid.hash, NULL);
607 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
609 if (!oidcmp(&ref->old_oid, &ref->new_oid)) {
611 format_display(display, '=', _("[up to date]"), NULL,
612 remote, pretty_ref, summary_width);
616 if (current_branch &&
617 !strcmp(ref->name, current_branch->name) &&
618 !(update_head_ok || is_bare_repository()) &&
619 !is_null_oid(&ref->old_oid)) {
621 * If this is the head, and it's not okay to update
622 * the head, and the old value of the head isn't empty...
624 format_display(display, '!', _("[rejected]"),
625 _("can't fetch in current branch"),
626 remote, pretty_ref, summary_width);
630 if (!is_null_oid(&ref->old_oid) &&
631 starts_with(ref->name, "refs/tags/")) {
633 r = s_update_ref("updating tag", ref, 0);
634 format_display(display, r ? '!' : 't', _("[tag update]"),
635 r ? _("unable to update local ref") : NULL,
636 remote, pretty_ref, summary_width);
640 current = lookup_commit_reference_gently(ref->old_oid.hash, 1);
641 updated = lookup_commit_reference_gently(ref->new_oid.hash, 1);
642 if (!current || !updated) {
647 * Nicely describe the new ref we're fetching.
648 * Base this on the remote's ref name, as it's
649 * more likely to follow a standard layout.
651 const char *name = remote_ref ? remote_ref->name : "";
652 if (starts_with(name, "refs/tags/")) {
654 what = _("[new tag]");
655 } else if (starts_with(name, "refs/heads/")) {
656 msg = "storing head";
657 what = _("[new branch]");
660 what = _("[new ref]");
663 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
664 (recurse_submodules != RECURSE_SUBMODULES_ON))
665 check_for_new_submodule_commits(&ref->new_oid);
666 r = s_update_ref(msg, ref, 0);
667 format_display(display, r ? '!' : '*', what,
668 r ? _("unable to update local ref") : NULL,
669 remote, pretty_ref, summary_width);
673 if (in_merge_bases(current, updated)) {
674 struct strbuf quickref = STRBUF_INIT;
676 strbuf_add_unique_abbrev(&quickref, current->object.oid.hash, DEFAULT_ABBREV);
677 strbuf_addstr(&quickref, "..");
678 strbuf_add_unique_abbrev(&quickref, ref->new_oid.hash, DEFAULT_ABBREV);
679 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
680 (recurse_submodules != RECURSE_SUBMODULES_ON))
681 check_for_new_submodule_commits(&ref->new_oid);
682 r = s_update_ref("fast-forward", ref, 1);
683 format_display(display, r ? '!' : ' ', quickref.buf,
684 r ? _("unable to update local ref") : NULL,
685 remote, pretty_ref, summary_width);
686 strbuf_release(&quickref);
688 } else if (force || ref->force) {
689 struct strbuf quickref = STRBUF_INIT;
691 strbuf_add_unique_abbrev(&quickref, current->object.oid.hash, DEFAULT_ABBREV);
692 strbuf_addstr(&quickref, "...");
693 strbuf_add_unique_abbrev(&quickref, ref->new_oid.hash, DEFAULT_ABBREV);
694 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
695 (recurse_submodules != RECURSE_SUBMODULES_ON))
696 check_for_new_submodule_commits(&ref->new_oid);
697 r = s_update_ref("forced-update", ref, 1);
698 format_display(display, r ? '!' : '+', quickref.buf,
699 r ? _("unable to update local ref") : _("forced update"),
700 remote, pretty_ref, summary_width);
701 strbuf_release(&quickref);
704 format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
705 remote, pretty_ref, summary_width);
710 static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
712 struct ref **rm = cb_data;
713 struct ref *ref = *rm;
715 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
718 return -1; /* end of the list */
720 hashcpy(sha1, ref->old_oid.hash);
724 static int store_updated_refs(const char *raw_url, const char *remote_name,
728 struct commit *commit;
729 int url_len, i, rc = 0;
730 struct strbuf note = STRBUF_INIT;
731 const char *what, *kind;
734 const char *filename = dry_run ? "/dev/null" : git_path_fetch_head();
736 int summary_width = transport_summary_width(ref_map);
738 fp = fopen(filename, "a");
740 return error_errno(_("cannot open %s"), filename);
743 url = transport_anonymize_url(raw_url);
745 url = xstrdup("foreign");
748 if (check_connected(iterate_ref_map, &rm, NULL)) {
749 rc = error(_("%s did not send all necessary objects\n"), url);
753 prepare_format_display(ref_map);
756 * We do a pass for each fetch_head_status type in their enum order, so
757 * merged entries are written before not-for-merge. That lets readers
758 * use FETCH_HEAD as a refname to refer to the ref to be merged.
760 for (want_status = FETCH_HEAD_MERGE;
761 want_status <= FETCH_HEAD_IGNORE;
763 for (rm = ref_map; rm; rm = rm->next) {
764 struct ref *ref = NULL;
765 const char *merge_status_marker = "";
767 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
768 if (want_status == FETCH_HEAD_MERGE)
769 warning(_("reject %s because shallow roots are not allowed to be updated"),
770 rm->peer_ref ? rm->peer_ref->name : rm->name);
774 commit = lookup_commit_reference_gently(rm->old_oid.hash, 1);
776 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
778 if (rm->fetch_head_status != want_status)
782 ref = alloc_ref(rm->peer_ref->name);
783 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
784 oidcpy(&ref->new_oid, &rm->old_oid);
785 ref->force = rm->peer_ref->force;
789 if (!strcmp(rm->name, "HEAD")) {
793 else if (starts_with(rm->name, "refs/heads/")) {
795 what = rm->name + 11;
797 else if (starts_with(rm->name, "refs/tags/")) {
799 what = rm->name + 10;
801 else if (starts_with(rm->name, "refs/remotes/")) {
802 kind = "remote-tracking branch";
803 what = rm->name + 13;
810 url_len = strlen(url);
811 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
814 if (4 < i && !strncmp(".git", url + i - 3, 4))
820 strbuf_addf(¬e, "%s ", kind);
821 strbuf_addf(¬e, "'%s' of ", what);
823 switch (rm->fetch_head_status) {
824 case FETCH_HEAD_NOT_FOR_MERGE:
825 merge_status_marker = "not-for-merge";
827 case FETCH_HEAD_MERGE:
828 fprintf(fp, "%s\t%s\t%s",
829 oid_to_hex(&rm->old_oid),
832 for (i = 0; i < url_len; ++i)
840 /* do not write anything to FETCH_HEAD */
846 rc |= update_local_ref(ref, what, rm, ¬e,
850 format_display(¬e, '*',
851 *kind ? kind : "branch", NULL,
852 *what ? what : "HEAD",
853 "FETCH_HEAD", summary_width);
855 if (verbosity >= 0 && !shown_url) {
856 fprintf(stderr, _("From %.*s\n"),
861 fprintf(stderr, " %s\n", note.buf);
866 if (rc & STORE_REF_ERROR_DF_CONFLICT)
867 error(_("some local refs could not be updated; try running\n"
868 " 'git remote prune %s' to remove any old, conflicting "
869 "branches"), remote_name);
872 strbuf_release(¬e);
879 * We would want to bypass the object transfer altogether if
880 * everything we are going to fetch already exists and is connected
883 static int quickfetch(struct ref *ref_map)
885 struct ref *rm = ref_map;
886 struct check_connected_options opt = CHECK_CONNECTED_INIT;
889 * If we are deepening a shallow clone we already have these
890 * objects reachable. Running rev-list here will return with
891 * a good (0) exit status and we'll bypass the fetch that we
892 * really need to perform. Claiming failure now will ensure
893 * we perform the network exchange to deepen our history.
898 return check_connected(iterate_ref_map, &rm, &opt);
901 static int fetch_refs(struct transport *transport, struct ref *ref_map)
903 int ret = quickfetch(ref_map);
905 ret = transport_fetch_refs(transport, ref_map);
907 ret |= store_updated_refs(transport->url,
908 transport->remote->name,
910 transport_unlock_pack(transport);
914 static int prune_refs(struct refspec *refs, int ref_count, struct ref *ref_map,
917 int url_len, i, result = 0;
918 struct ref *ref, *stale_refs = get_stale_heads(refs, ref_count, ref_map);
920 int summary_width = transport_summary_width(stale_refs);
921 const char *dangling_msg = dry_run
922 ? _(" (%s will become dangling)")
923 : _(" (%s has become dangling)");
926 url = transport_anonymize_url(raw_url);
928 url = xstrdup("foreign");
930 url_len = strlen(url);
931 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
935 if (4 < i && !strncmp(".git", url + i - 3, 4))
939 struct string_list refnames = STRING_LIST_INIT_NODUP;
941 for (ref = stale_refs; ref; ref = ref->next)
942 string_list_append(&refnames, ref->name);
944 result = delete_refs(&refnames, 0);
945 string_list_clear(&refnames, 0);
948 if (verbosity >= 0) {
949 for (ref = stale_refs; ref; ref = ref->next) {
950 struct strbuf sb = STRBUF_INIT;
952 fprintf(stderr, _("From %.*s\n"), url_len, url);
955 format_display(&sb, '-', _("[deleted]"), NULL,
956 _("(none)"), prettify_refname(ref->name),
958 fprintf(stderr, " %s\n",sb.buf);
960 warn_dangling_symref(stderr, dangling_msg, ref->name);
965 free_refs(stale_refs);
969 static void check_not_current_branch(struct ref *ref_map)
971 struct branch *current_branch = branch_get(NULL);
973 if (is_bare_repository() || !current_branch)
976 for (; ref_map; ref_map = ref_map->next)
977 if (ref_map->peer_ref && !strcmp(current_branch->refname,
978 ref_map->peer_ref->name))
979 die(_("Refusing to fetch into current branch %s "
980 "of non-bare repository"), current_branch->refname);
983 static int truncate_fetch_head(void)
985 const char *filename = git_path_fetch_head();
986 FILE *fp = fopen_for_writing(filename);
989 return error_errno(_("cannot open %s"), filename);
994 static void set_option(struct transport *transport, const char *name, const char *value)
996 int r = transport_set_option(transport, name, value);
998 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
999 name, value, transport->url);
1001 warning(_("Option \"%s\" is ignored for %s\n"),
1002 name, transport->url);
1005 static struct transport *prepare_transport(struct remote *remote, int deepen)
1007 struct transport *transport;
1008 transport = transport_get(remote, NULL);
1009 transport_set_verbosity(transport, verbosity, progress);
1010 transport->family = family;
1012 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1014 set_option(transport, TRANS_OPT_KEEP, "yes");
1016 set_option(transport, TRANS_OPT_DEPTH, depth);
1017 if (deepen && deepen_since)
1018 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1019 if (deepen && deepen_not.nr)
1020 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1021 (const char *)&deepen_not);
1022 if (deepen_relative)
1023 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1025 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1029 static void backfill_tags(struct transport *transport, struct ref *ref_map)
1034 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1035 * when remote helper is used (setting it to an empty string
1036 * is not unsetting). We could extend the remote helper
1037 * protocol for that, but for now, just force a new connection
1038 * without deepen-since. Similar story for deepen-not.
1040 cannot_reuse = transport->cannot_reuse ||
1041 deepen_since || deepen_not.nr;
1043 gsecondary = prepare_transport(transport->remote, 0);
1044 transport = gsecondary;
1047 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1048 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1049 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1050 fetch_refs(transport, ref_map);
1053 transport_disconnect(gsecondary);
1058 static int do_fetch(struct transport *transport,
1059 struct refspec *refs, int ref_count)
1061 struct string_list existing_refs = STRING_LIST_INIT_DUP;
1062 struct ref *ref_map;
1064 int autotags = (transport->remote->fetch_tags == 1);
1067 for_each_ref(add_existing, &existing_refs);
1069 if (tags == TAGS_DEFAULT) {
1070 if (transport->remote->fetch_tags == 2)
1072 if (transport->remote->fetch_tags == -1)
1076 if (!transport->get_refs_list || !transport->fetch)
1077 die(_("Don't know how to fetch from %s"), transport->url);
1079 /* if not appending, truncate FETCH_HEAD */
1080 if (!append && !dry_run) {
1081 retcode = truncate_fetch_head();
1086 ref_map = get_ref_map(transport, refs, ref_count, tags, &autotags);
1087 if (!update_head_ok)
1088 check_not_current_branch(ref_map);
1090 for (rm = ref_map; rm; rm = rm->next) {
1092 struct string_list_item *peer_item =
1093 string_list_lookup(&existing_refs,
1094 rm->peer_ref->name);
1096 struct object_id *old_oid = peer_item->util;
1097 oidcpy(&rm->peer_ref->old_oid, old_oid);
1102 if (tags == TAGS_DEFAULT && autotags)
1103 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1106 * We only prune based on refspecs specified
1107 * explicitly (via command line or configuration); we
1108 * don't care whether --tags was specified.
1111 prune_refs(refs, ref_count, ref_map, transport->url);
1113 prune_refs(transport->remote->fetch,
1114 transport->remote->fetch_refspec_nr,
1119 if (fetch_refs(transport, ref_map)) {
1126 /* if neither --no-tags nor --tags was specified, do automated tag
1128 if (tags == TAGS_DEFAULT && autotags) {
1129 struct ref **tail = &ref_map;
1131 find_non_local_tags(transport, &ref_map, &tail);
1133 backfill_tags(transport, ref_map);
1138 string_list_clear(&existing_refs, 1);
1142 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1144 struct string_list *list = priv;
1145 if (!remote->skip_default_update)
1146 string_list_append(list, remote->name);
1150 struct remote_group_data {
1152 struct string_list *list;
1155 static int get_remote_group(const char *key, const char *value, void *priv)
1157 struct remote_group_data *g = priv;
1159 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1160 /* split list by white space */
1162 size_t wordlen = strcspn(value, " \t\n");
1165 string_list_append_nodup(g->list,
1166 xstrndup(value, wordlen));
1167 value += wordlen + (value[wordlen] != '\0');
1174 static int add_remote_or_group(const char *name, struct string_list *list)
1176 int prev_nr = list->nr;
1177 struct remote_group_data g;
1178 g.name = name; g.list = list;
1180 git_config(get_remote_group, &g);
1181 if (list->nr == prev_nr) {
1182 struct remote *remote = remote_get(name);
1183 if (!remote_is_configured(remote, 0))
1185 string_list_append(list, remote->name);
1190 static void add_options_to_argv(struct argv_array *argv)
1193 argv_array_push(argv, "--dry-run");
1195 argv_array_push(argv, prune ? "--prune" : "--no-prune");
1197 argv_array_push(argv, "--update-head-ok");
1199 argv_array_push(argv, "--force");
1201 argv_array_push(argv, "--keep");
1202 if (recurse_submodules == RECURSE_SUBMODULES_ON)
1203 argv_array_push(argv, "--recurse-submodules");
1204 else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1205 argv_array_push(argv, "--recurse-submodules=on-demand");
1206 if (tags == TAGS_SET)
1207 argv_array_push(argv, "--tags");
1208 else if (tags == TAGS_UNSET)
1209 argv_array_push(argv, "--no-tags");
1211 argv_array_push(argv, "-v");
1213 argv_array_push(argv, "-v");
1214 else if (verbosity < 0)
1215 argv_array_push(argv, "-q");
1219 static int fetch_multiple(struct string_list *list)
1222 struct argv_array argv = ARGV_ARRAY_INIT;
1224 if (!append && !dry_run) {
1225 int errcode = truncate_fetch_head();
1230 argv_array_pushl(&argv, "fetch", "--append", NULL);
1231 add_options_to_argv(&argv);
1233 for (i = 0; i < list->nr; i++) {
1234 const char *name = list->items[i].string;
1235 argv_array_push(&argv, name);
1237 printf(_("Fetching %s\n"), name);
1238 if (run_command_v_opt(argv.argv, RUN_GIT_CMD)) {
1239 error(_("Could not fetch %s"), name);
1242 argv_array_pop(&argv);
1245 argv_array_clear(&argv);
1249 static int fetch_one(struct remote *remote, int argc, const char **argv)
1251 static const char **refs = NULL;
1252 struct refspec *refspec;
1257 die(_("No remote repository specified. Please, specify either a URL or a\n"
1258 "remote name from which new revisions should be fetched."));
1260 gtransport = prepare_transport(remote, 1);
1263 /* no command line request */
1264 if (0 <= gtransport->remote->prune)
1265 prune = gtransport->remote->prune;
1266 else if (0 <= fetch_prune_config)
1267 prune = fetch_prune_config;
1269 prune = PRUNE_BY_DEFAULT;
1275 refs = xcalloc(st_add(argc, 1), sizeof(const char *));
1276 for (i = 0; i < argc; i++) {
1277 if (!strcmp(argv[i], "tag")) {
1280 die(_("You need to specify a tag name."));
1281 refs[j++] = xstrfmt("refs/tags/%s:refs/tags/%s",
1284 refs[j++] = argv[i];
1290 sigchain_push_common(unlock_pack_on_signal);
1291 atexit(unlock_pack);
1292 refspec = parse_fetch_refspec(ref_nr, refs);
1293 exit_code = do_fetch(gtransport, refspec, ref_nr);
1294 free_refspec(ref_nr, refspec);
1295 transport_disconnect(gtransport);
1300 int cmd_fetch(int argc, const char **argv, const char *prefix)
1303 struct string_list list = STRING_LIST_INIT_DUP;
1304 struct remote *remote;
1306 struct argv_array argv_gc_auto = ARGV_ARRAY_INIT;
1308 packet_trace_identity("fetch");
1310 /* Record the command line for the reflog */
1311 strbuf_addstr(&default_rla, "fetch");
1312 for (i = 1; i < argc; i++)
1313 strbuf_addf(&default_rla, " %s", argv[i]);
1315 git_config(git_fetch_config, NULL);
1317 argc = parse_options(argc, argv, prefix,
1318 builtin_fetch_options, builtin_fetch_usage, 0);
1320 if (deepen_relative) {
1321 if (deepen_relative < 0)
1322 die(_("Negative depth in --deepen is not supported"));
1324 die(_("--deepen and --depth are mutually exclusive"));
1325 depth = xstrfmt("%d", deepen_relative);
1329 die(_("--depth and --unshallow cannot be used together"));
1330 else if (!is_repository_shallow())
1331 die(_("--unshallow on a complete repository does not make sense"));
1333 depth = xstrfmt("%d", INFINITE_DEPTH);
1336 /* no need to be strict, transport_set_option() will validate it again */
1337 if (depth && atoi(depth) < 1)
1338 die(_("depth %s is not a positive number"), depth);
1339 if (depth || deepen_since || deepen_not.nr)
1342 if (recurse_submodules != RECURSE_SUBMODULES_OFF) {
1343 if (recurse_submodules_default) {
1344 int arg = parse_fetch_recurse_submodules_arg("--recurse-submodules-default", recurse_submodules_default);
1345 set_config_fetch_recurse_submodules(arg);
1347 gitmodules_config();
1348 git_config(submodule_config, NULL);
1353 die(_("fetch --all does not take a repository argument"));
1355 die(_("fetch --all does not make sense with refspecs"));
1356 (void) for_each_remote(get_one_remote_for_fetch, &list);
1357 result = fetch_multiple(&list);
1358 } else if (argc == 0) {
1359 /* No arguments -- use default remote */
1360 remote = remote_get(NULL);
1361 result = fetch_one(remote, argc, argv);
1362 } else if (multiple) {
1363 /* All arguments are assumed to be remotes or groups */
1364 for (i = 0; i < argc; i++)
1365 if (!add_remote_or_group(argv[i], &list))
1366 die(_("No such remote or remote group: %s"), argv[i]);
1367 result = fetch_multiple(&list);
1369 /* Single remote or group */
1370 (void) add_remote_or_group(argv[0], &list);
1372 /* More than one remote */
1374 die(_("Fetching a group and specifying refspecs does not make sense"));
1375 result = fetch_multiple(&list);
1377 /* Zero or one remotes */
1378 remote = remote_get(argv[0]);
1379 result = fetch_one(remote, argc-1, argv+1);
1383 if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
1384 struct argv_array options = ARGV_ARRAY_INIT;
1386 add_options_to_argv(&options);
1387 result = fetch_populated_submodules(&options,
1392 argv_array_clear(&options);
1395 string_list_clear(&list, 0);
1399 argv_array_pushl(&argv_gc_auto, "gc", "--auto", NULL);
1401 argv_array_push(&argv_gc_auto, "--quiet");
1402 run_command_v_opt(argv_gc_auto.argv, RUN_GIT_CMD);
1403 argv_array_clear(&argv_gc_auto);