fetch-pack: unify ref in and out param
[git.git] / builtin / fetch.c
blob8f68ba8309e2cd30997d32009518666d0928de26
1 /*
2 * "git fetch"
3 */
4 #include "cache.h"
5 #include "config.h"
6 #include "repository.h"
7 #include "refs.h"
8 #include "refspec.h"
9 #include "commit.h"
10 #include "builtin.h"
11 #include "string-list.h"
12 #include "remote.h"
13 #include "transport.h"
14 #include "run-command.h"
15 #include "parse-options.h"
16 #include "sigchain.h"
17 #include "submodule-config.h"
18 #include "submodule.h"
19 #include "connected.h"
20 #include "argv-array.h"
21 #include "utf8.h"
22 #include "packfile.h"
23 #include "list-objects-filter-options.h"
25 static const char * const builtin_fetch_usage[] = {
26 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
27 N_("git fetch [<options>] <group>"),
28 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
29 N_("git fetch --all [<options>]"),
30 NULL
33 enum {
34 TAGS_UNSET = 0,
35 TAGS_DEFAULT = 1,
36 TAGS_SET = 2
39 static int fetch_prune_config = -1; /* unspecified */
40 static int prune = -1; /* unspecified */
41 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
43 static int fetch_prune_tags_config = -1; /* unspecified */
44 static int prune_tags = -1; /* unspecified */
45 #define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
47 static int all, append, dry_run, force, keep, multiple, update_head_ok, verbosity, deepen_relative;
48 static int progress = -1;
49 static int tags = TAGS_DEFAULT, unshallow, update_shallow, deepen;
50 static int max_children = 1;
51 static enum transport_family family;
52 static const char *depth;
53 static const char *deepen_since;
54 static const char *upload_pack;
55 static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
56 static struct strbuf default_rla = STRBUF_INIT;
57 static struct transport *gtransport;
58 static struct transport *gsecondary;
59 static const char *submodule_prefix = "";
60 static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
61 static int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
62 static int shown_url = 0;
63 static struct refspec refmap = REFSPEC_INIT_FETCH;
64 static struct list_objects_filter_options filter_options;
65 static struct string_list server_options = STRING_LIST_INIT_DUP;
67 static int git_fetch_config(const char *k, const char *v, void *cb)
69 if (!strcmp(k, "fetch.prune")) {
70 fetch_prune_config = git_config_bool(k, v);
71 return 0;
74 if (!strcmp(k, "fetch.prunetags")) {
75 fetch_prune_tags_config = git_config_bool(k, v);
76 return 0;
79 if (!strcmp(k, "submodule.recurse")) {
80 int r = git_config_bool(k, v) ?
81 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
82 recurse_submodules = r;
85 if (!strcmp(k, "submodule.fetchjobs")) {
86 max_children = parse_submodule_fetchjobs(k, v);
87 return 0;
88 } else if (!strcmp(k, "fetch.recursesubmodules")) {
89 recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
90 return 0;
93 return git_default_config(k, v, cb);
96 static int gitmodules_fetch_config(const char *var, const char *value, void *cb)
98 if (!strcmp(var, "submodule.fetchjobs")) {
99 max_children = parse_submodule_fetchjobs(var, value);
100 return 0;
101 } else if (!strcmp(var, "fetch.recursesubmodules")) {
102 recurse_submodules = parse_fetch_recurse_submodules_arg(var, value);
103 return 0;
106 return 0;
109 static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
112 * "git fetch --refmap='' origin foo"
113 * can be used to tell the command not to store anywhere
115 refspec_append(&refmap, arg);
117 return 0;
120 static struct option builtin_fetch_options[] = {
121 OPT__VERBOSITY(&verbosity),
122 OPT_BOOL(0, "all", &all,
123 N_("fetch from all remotes")),
124 OPT_BOOL('a', "append", &append,
125 N_("append to .git/FETCH_HEAD instead of overwriting")),
126 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
127 N_("path to upload pack on remote end")),
128 OPT__FORCE(&force, N_("force overwrite of local branch"), 0),
129 OPT_BOOL('m', "multiple", &multiple,
130 N_("fetch from multiple remotes")),
131 OPT_SET_INT('t', "tags", &tags,
132 N_("fetch all tags and associated objects"), TAGS_SET),
133 OPT_SET_INT('n', NULL, &tags,
134 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
135 OPT_INTEGER('j', "jobs", &max_children,
136 N_("number of submodules fetched in parallel")),
137 OPT_BOOL('p', "prune", &prune,
138 N_("prune remote-tracking branches no longer on remote")),
139 OPT_BOOL('P', "prune-tags", &prune_tags,
140 N_("prune local tags no longer on remote and clobber changed tags")),
141 { OPTION_CALLBACK, 0, "recurse-submodules", &recurse_submodules, N_("on-demand"),
142 N_("control recursive fetching of submodules"),
143 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules },
144 OPT_BOOL(0, "dry-run", &dry_run,
145 N_("dry run")),
146 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
147 OPT_BOOL('u', "update-head-ok", &update_head_ok,
148 N_("allow updating of HEAD ref")),
149 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
150 OPT_STRING(0, "depth", &depth, N_("depth"),
151 N_("deepen history of shallow clone")),
152 OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
153 N_("deepen history of shallow repository based on time")),
154 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
155 N_("deepen history of shallow clone, excluding rev")),
156 OPT_INTEGER(0, "deepen", &deepen_relative,
157 N_("deepen history of shallow clone")),
158 OPT_SET_INT_F(0, "unshallow", &unshallow,
159 N_("convert to a complete repository"),
160 1, PARSE_OPT_NONEG),
161 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
162 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
163 { OPTION_CALLBACK, 0, "recurse-submodules-default",
164 &recurse_submodules_default, N_("on-demand"),
165 N_("default for recursive fetching of submodules "
166 "(lower priority than config files)"),
167 PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules },
168 OPT_BOOL(0, "update-shallow", &update_shallow,
169 N_("accept refs that update .git/shallow")),
170 { OPTION_CALLBACK, 0, "refmap", NULL, N_("refmap"),
171 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg },
172 OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
173 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
174 TRANSPORT_FAMILY_IPV4),
175 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
176 TRANSPORT_FAMILY_IPV6),
177 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
178 OPT_END()
181 static void unlock_pack(void)
183 if (gtransport)
184 transport_unlock_pack(gtransport);
185 if (gsecondary)
186 transport_unlock_pack(gsecondary);
189 static void unlock_pack_on_signal(int signo)
191 unlock_pack();
192 sigchain_pop(signo);
193 raise(signo);
196 static void add_merge_config(struct ref **head,
197 const struct ref *remote_refs,
198 struct branch *branch,
199 struct ref ***tail)
201 int i;
203 for (i = 0; i < branch->merge_nr; i++) {
204 struct ref *rm, **old_tail = *tail;
205 struct refspec_item refspec;
207 for (rm = *head; rm; rm = rm->next) {
208 if (branch_merge_matches(branch, i, rm->name)) {
209 rm->fetch_head_status = FETCH_HEAD_MERGE;
210 break;
213 if (rm)
214 continue;
217 * Not fetched to a remote-tracking branch? We need to fetch
218 * it anyway to allow this branch's "branch.$name.merge"
219 * to be honored by 'git pull', but we do not have to
220 * fail if branch.$name.merge is misconfigured to point
221 * at a nonexisting branch. If we were indeed called by
222 * 'git pull', it will notice the misconfiguration because
223 * there is no entry in the resulting FETCH_HEAD marked
224 * for merging.
226 memset(&refspec, 0, sizeof(refspec));
227 refspec.src = branch->merge[i]->src;
228 get_fetch_map(remote_refs, &refspec, tail, 1);
229 for (rm = *old_tail; rm; rm = rm->next)
230 rm->fetch_head_status = FETCH_HEAD_MERGE;
234 static int add_existing(const char *refname, const struct object_id *oid,
235 int flag, void *cbdata)
237 struct string_list *list = (struct string_list *)cbdata;
238 struct string_list_item *item = string_list_insert(list, refname);
239 struct object_id *old_oid = xmalloc(sizeof(*old_oid));
241 oidcpy(old_oid, oid);
242 item->util = old_oid;
243 return 0;
246 static int will_fetch(struct ref **head, const unsigned char *sha1)
248 struct ref *rm = *head;
249 while (rm) {
250 if (!hashcmp(rm->old_oid.hash, sha1))
251 return 1;
252 rm = rm->next;
254 return 0;
257 static void find_non_local_tags(const struct ref *refs,
258 struct ref **head,
259 struct ref ***tail)
261 struct string_list existing_refs = STRING_LIST_INIT_DUP;
262 struct string_list remote_refs = STRING_LIST_INIT_NODUP;
263 const struct ref *ref;
264 struct string_list_item *item = NULL;
266 for_each_ref(add_existing, &existing_refs);
267 for (ref = refs; ref; ref = ref->next) {
268 if (!starts_with(ref->name, "refs/tags/"))
269 continue;
272 * The peeled ref always follows the matching base
273 * ref, so if we see a peeled ref that we don't want
274 * to fetch then we can mark the ref entry in the list
275 * as one to ignore by setting util to NULL.
277 if (ends_with(ref->name, "^{}")) {
278 if (item &&
279 !has_object_file_with_flags(&ref->old_oid,
280 OBJECT_INFO_QUICK) &&
281 !will_fetch(head, ref->old_oid.hash) &&
282 !has_sha1_file_with_flags(item->util,
283 OBJECT_INFO_QUICK) &&
284 !will_fetch(head, item->util))
285 item->util = NULL;
286 item = NULL;
287 continue;
291 * If item is non-NULL here, then we previously saw a
292 * ref not followed by a peeled reference, so we need
293 * to check if it is a lightweight tag that we want to
294 * fetch.
296 if (item &&
297 !has_sha1_file_with_flags(item->util, OBJECT_INFO_QUICK) &&
298 !will_fetch(head, item->util))
299 item->util = NULL;
301 item = NULL;
303 /* skip duplicates and refs that we already have */
304 if (string_list_has_string(&remote_refs, ref->name) ||
305 string_list_has_string(&existing_refs, ref->name))
306 continue;
308 item = string_list_insert(&remote_refs, ref->name);
309 item->util = (void *)&ref->old_oid;
311 string_list_clear(&existing_refs, 1);
314 * We may have a final lightweight tag that needs to be
315 * checked to see if it needs fetching.
317 if (item &&
318 !has_sha1_file_with_flags(item->util, OBJECT_INFO_QUICK) &&
319 !will_fetch(head, item->util))
320 item->util = NULL;
323 * For all the tags in the remote_refs string list,
324 * add them to the list of refs to be fetched
326 for_each_string_list_item(item, &remote_refs) {
327 /* Unless we have already decided to ignore this item... */
328 if (item->util)
330 struct ref *rm = alloc_ref(item->string);
331 rm->peer_ref = alloc_ref(item->string);
332 oidcpy(&rm->old_oid, item->util);
333 **tail = rm;
334 *tail = &rm->next;
338 string_list_clear(&remote_refs, 0);
341 static struct ref *get_ref_map(struct remote *remote,
342 const struct ref *remote_refs,
343 struct refspec *rs,
344 int tags, int *autotags)
346 int i;
347 struct ref *rm;
348 struct ref *ref_map = NULL;
349 struct ref **tail = &ref_map;
351 /* opportunistically-updated references: */
352 struct ref *orefs = NULL, **oref_tail = &orefs;
354 struct string_list existing_refs = STRING_LIST_INIT_DUP;
356 if (rs->nr) {
357 struct refspec *fetch_refspec;
359 for (i = 0; i < rs->nr; i++) {
360 get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
361 if (rs->items[i].dst && rs->items[i].dst[0])
362 *autotags = 1;
364 /* Merge everything on the command line (but not --tags) */
365 for (rm = ref_map; rm; rm = rm->next)
366 rm->fetch_head_status = FETCH_HEAD_MERGE;
369 * For any refs that we happen to be fetching via
370 * command-line arguments, the destination ref might
371 * have been missing or have been different than the
372 * remote-tracking ref that would be derived from the
373 * configured refspec. In these cases, we want to
374 * take the opportunity to update their configured
375 * remote-tracking reference. However, we do not want
376 * to mention these entries in FETCH_HEAD at all, as
377 * they would simply be duplicates of existing
378 * entries, so we set them FETCH_HEAD_IGNORE below.
380 * We compute these entries now, based only on the
381 * refspecs specified on the command line. But we add
382 * them to the list following the refspecs resulting
383 * from the tags option so that one of the latter,
384 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
385 * by ref_remove_duplicates() in favor of one of these
386 * opportunistic entries with FETCH_HEAD_IGNORE.
388 if (refmap.nr)
389 fetch_refspec = &refmap;
390 else
391 fetch_refspec = &remote->fetch;
393 for (i = 0; i < fetch_refspec->nr; i++)
394 get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
395 } else if (refmap.nr) {
396 die("--refmap option is only meaningful with command-line refspec(s).");
397 } else {
398 /* Use the defaults */
399 struct branch *branch = branch_get(NULL);
400 int has_merge = branch_has_merge_config(branch);
401 if (remote &&
402 (remote->fetch.nr ||
403 /* Note: has_merge implies non-NULL branch->remote_name */
404 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
405 for (i = 0; i < remote->fetch.nr; i++) {
406 get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
407 if (remote->fetch.items[i].dst &&
408 remote->fetch.items[i].dst[0])
409 *autotags = 1;
410 if (!i && !has_merge && ref_map &&
411 !remote->fetch.items[0].pattern)
412 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
415 * if the remote we're fetching from is the same
416 * as given in branch.<name>.remote, we add the
417 * ref given in branch.<name>.merge, too.
419 * Note: has_merge implies non-NULL branch->remote_name
421 if (has_merge &&
422 !strcmp(branch->remote_name, remote->name))
423 add_merge_config(&ref_map, remote_refs, branch, &tail);
424 } else {
425 ref_map = get_remote_ref(remote_refs, "HEAD");
426 if (!ref_map)
427 die(_("Couldn't find remote ref HEAD"));
428 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
429 tail = &ref_map->next;
433 if (tags == TAGS_SET)
434 /* also fetch all tags */
435 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
436 else if (tags == TAGS_DEFAULT && *autotags)
437 find_non_local_tags(remote_refs, &ref_map, &tail);
439 /* Now append any refs to be updated opportunistically: */
440 *tail = orefs;
441 for (rm = orefs; rm; rm = rm->next) {
442 rm->fetch_head_status = FETCH_HEAD_IGNORE;
443 tail = &rm->next;
446 ref_map = ref_remove_duplicates(ref_map);
448 for_each_ref(add_existing, &existing_refs);
449 for (rm = ref_map; rm; rm = rm->next) {
450 if (rm->peer_ref) {
451 struct string_list_item *peer_item =
452 string_list_lookup(&existing_refs,
453 rm->peer_ref->name);
454 if (peer_item) {
455 struct object_id *old_oid = peer_item->util;
456 oidcpy(&rm->peer_ref->old_oid, old_oid);
460 string_list_clear(&existing_refs, 1);
462 return ref_map;
465 #define STORE_REF_ERROR_OTHER 1
466 #define STORE_REF_ERROR_DF_CONFLICT 2
468 static int s_update_ref(const char *action,
469 struct ref *ref,
470 int check_old)
472 char *msg;
473 char *rla = getenv("GIT_REFLOG_ACTION");
474 struct ref_transaction *transaction;
475 struct strbuf err = STRBUF_INIT;
476 int ret, df_conflict = 0;
478 if (dry_run)
479 return 0;
480 if (!rla)
481 rla = default_rla.buf;
482 msg = xstrfmt("%s: %s", rla, action);
484 transaction = ref_transaction_begin(&err);
485 if (!transaction ||
486 ref_transaction_update(transaction, ref->name,
487 &ref->new_oid,
488 check_old ? &ref->old_oid : NULL,
489 0, msg, &err))
490 goto fail;
492 ret = ref_transaction_commit(transaction, &err);
493 if (ret) {
494 df_conflict = (ret == TRANSACTION_NAME_CONFLICT);
495 goto fail;
498 ref_transaction_free(transaction);
499 strbuf_release(&err);
500 free(msg);
501 return 0;
502 fail:
503 ref_transaction_free(transaction);
504 error("%s", err.buf);
505 strbuf_release(&err);
506 free(msg);
507 return df_conflict ? STORE_REF_ERROR_DF_CONFLICT
508 : STORE_REF_ERROR_OTHER;
511 static int refcol_width = 10;
512 static int compact_format;
514 static void adjust_refcol_width(const struct ref *ref)
516 int max, rlen, llen, len;
518 /* uptodate lines are only shown on high verbosity level */
519 if (!verbosity && !oidcmp(&ref->peer_ref->old_oid, &ref->old_oid))
520 return;
522 max = term_columns();
523 rlen = utf8_strwidth(prettify_refname(ref->name));
525 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
528 * rough estimation to see if the output line is too long and
529 * should not be counted (we can't do precise calculation
530 * anyway because we don't know if the error explanation part
531 * will be printed in update_local_ref)
533 if (compact_format) {
534 llen = 0;
535 max = max * 2 / 3;
537 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
538 if (len >= max)
539 return;
542 * Not precise calculation for compact mode because '*' can
543 * appear on the left hand side of '->' and shrink the column
544 * back.
546 if (refcol_width < rlen)
547 refcol_width = rlen;
550 static void prepare_format_display(struct ref *ref_map)
552 struct ref *rm;
553 const char *format = "full";
555 git_config_get_string_const("fetch.output", &format);
556 if (!strcasecmp(format, "full"))
557 compact_format = 0;
558 else if (!strcasecmp(format, "compact"))
559 compact_format = 1;
560 else
561 die(_("configuration fetch.output contains invalid value %s"),
562 format);
564 for (rm = ref_map; rm; rm = rm->next) {
565 if (rm->status == REF_STATUS_REJECT_SHALLOW ||
566 !rm->peer_ref ||
567 !strcmp(rm->name, "HEAD"))
568 continue;
570 adjust_refcol_width(rm);
574 static void print_remote_to_local(struct strbuf *display,
575 const char *remote, const char *local)
577 strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
580 static int find_and_replace(struct strbuf *haystack,
581 const char *needle,
582 const char *placeholder)
584 const char *p = strstr(haystack->buf, needle);
585 int plen, nlen;
587 if (!p)
588 return 0;
590 if (p > haystack->buf && p[-1] != '/')
591 return 0;
593 plen = strlen(p);
594 nlen = strlen(needle);
595 if (plen > nlen && p[nlen] != '/')
596 return 0;
598 strbuf_splice(haystack, p - haystack->buf, nlen,
599 placeholder, strlen(placeholder));
600 return 1;
603 static void print_compact(struct strbuf *display,
604 const char *remote, const char *local)
606 struct strbuf r = STRBUF_INIT;
607 struct strbuf l = STRBUF_INIT;
609 if (!strcmp(remote, local)) {
610 strbuf_addf(display, "%-*s -> *", refcol_width, remote);
611 return;
614 strbuf_addstr(&r, remote);
615 strbuf_addstr(&l, local);
617 if (!find_and_replace(&r, local, "*"))
618 find_and_replace(&l, remote, "*");
619 print_remote_to_local(display, r.buf, l.buf);
621 strbuf_release(&r);
622 strbuf_release(&l);
625 static void format_display(struct strbuf *display, char code,
626 const char *summary, const char *error,
627 const char *remote, const char *local,
628 int summary_width)
630 int width = (summary_width + strlen(summary) - gettext_width(summary));
632 strbuf_addf(display, "%c %-*s ", code, width, summary);
633 if (!compact_format)
634 print_remote_to_local(display, remote, local);
635 else
636 print_compact(display, remote, local);
637 if (error)
638 strbuf_addf(display, " (%s)", error);
641 static int update_local_ref(struct ref *ref,
642 const char *remote,
643 const struct ref *remote_ref,
644 struct strbuf *display,
645 int summary_width)
647 struct commit *current = NULL, *updated;
648 enum object_type type;
649 struct branch *current_branch = branch_get(NULL);
650 const char *pretty_ref = prettify_refname(ref->name);
652 type = oid_object_info(the_repository, &ref->new_oid, NULL);
653 if (type < 0)
654 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
656 if (!oidcmp(&ref->old_oid, &ref->new_oid)) {
657 if (verbosity > 0)
658 format_display(display, '=', _("[up to date]"), NULL,
659 remote, pretty_ref, summary_width);
660 return 0;
663 if (current_branch &&
664 !strcmp(ref->name, current_branch->name) &&
665 !(update_head_ok || is_bare_repository()) &&
666 !is_null_oid(&ref->old_oid)) {
668 * If this is the head, and it's not okay to update
669 * the head, and the old value of the head isn't empty...
671 format_display(display, '!', _("[rejected]"),
672 _("can't fetch in current branch"),
673 remote, pretty_ref, summary_width);
674 return 1;
677 if (!is_null_oid(&ref->old_oid) &&
678 starts_with(ref->name, "refs/tags/")) {
679 int r;
680 r = s_update_ref("updating tag", ref, 0);
681 format_display(display, r ? '!' : 't', _("[tag update]"),
682 r ? _("unable to update local ref") : NULL,
683 remote, pretty_ref, summary_width);
684 return r;
687 current = lookup_commit_reference_gently(&ref->old_oid, 1);
688 updated = lookup_commit_reference_gently(&ref->new_oid, 1);
689 if (!current || !updated) {
690 const char *msg;
691 const char *what;
692 int r;
694 * Nicely describe the new ref we're fetching.
695 * Base this on the remote's ref name, as it's
696 * more likely to follow a standard layout.
698 const char *name = remote_ref ? remote_ref->name : "";
699 if (starts_with(name, "refs/tags/")) {
700 msg = "storing tag";
701 what = _("[new tag]");
702 } else if (starts_with(name, "refs/heads/")) {
703 msg = "storing head";
704 what = _("[new branch]");
705 } else {
706 msg = "storing ref";
707 what = _("[new ref]");
710 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
711 (recurse_submodules != RECURSE_SUBMODULES_ON))
712 check_for_new_submodule_commits(&ref->new_oid);
713 r = s_update_ref(msg, ref, 0);
714 format_display(display, r ? '!' : '*', what,
715 r ? _("unable to update local ref") : NULL,
716 remote, pretty_ref, summary_width);
717 return r;
720 if (in_merge_bases(current, updated)) {
721 struct strbuf quickref = STRBUF_INIT;
722 int r;
723 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
724 strbuf_addstr(&quickref, "..");
725 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
726 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
727 (recurse_submodules != RECURSE_SUBMODULES_ON))
728 check_for_new_submodule_commits(&ref->new_oid);
729 r = s_update_ref("fast-forward", ref, 1);
730 format_display(display, r ? '!' : ' ', quickref.buf,
731 r ? _("unable to update local ref") : NULL,
732 remote, pretty_ref, summary_width);
733 strbuf_release(&quickref);
734 return r;
735 } else if (force || ref->force) {
736 struct strbuf quickref = STRBUF_INIT;
737 int r;
738 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
739 strbuf_addstr(&quickref, "...");
740 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
741 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
742 (recurse_submodules != RECURSE_SUBMODULES_ON))
743 check_for_new_submodule_commits(&ref->new_oid);
744 r = s_update_ref("forced-update", ref, 1);
745 format_display(display, r ? '!' : '+', quickref.buf,
746 r ? _("unable to update local ref") : _("forced update"),
747 remote, pretty_ref, summary_width);
748 strbuf_release(&quickref);
749 return r;
750 } else {
751 format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
752 remote, pretty_ref, summary_width);
753 return 1;
757 static int iterate_ref_map(void *cb_data, struct object_id *oid)
759 struct ref **rm = cb_data;
760 struct ref *ref = *rm;
762 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
763 ref = ref->next;
764 if (!ref)
765 return -1; /* end of the list */
766 *rm = ref->next;
767 oidcpy(oid, &ref->old_oid);
768 return 0;
771 static int store_updated_refs(const char *raw_url, const char *remote_name,
772 int connectivity_checked, struct ref *ref_map)
774 FILE *fp;
775 struct commit *commit;
776 int url_len, i, rc = 0;
777 struct strbuf note = STRBUF_INIT;
778 const char *what, *kind;
779 struct ref *rm;
780 char *url;
781 const char *filename = dry_run ? "/dev/null" : git_path_fetch_head();
782 int want_status;
783 int summary_width = transport_summary_width(ref_map);
785 fp = fopen(filename, "a");
786 if (!fp)
787 return error_errno(_("cannot open %s"), filename);
789 if (raw_url)
790 url = transport_anonymize_url(raw_url);
791 else
792 url = xstrdup("foreign");
794 if (!connectivity_checked) {
795 rm = ref_map;
796 if (check_connected(iterate_ref_map, &rm, NULL)) {
797 rc = error(_("%s did not send all necessary objects\n"), url);
798 goto abort;
802 prepare_format_display(ref_map);
805 * We do a pass for each fetch_head_status type in their enum order, so
806 * merged entries are written before not-for-merge. That lets readers
807 * use FETCH_HEAD as a refname to refer to the ref to be merged.
809 for (want_status = FETCH_HEAD_MERGE;
810 want_status <= FETCH_HEAD_IGNORE;
811 want_status++) {
812 for (rm = ref_map; rm; rm = rm->next) {
813 struct ref *ref = NULL;
814 const char *merge_status_marker = "";
816 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
817 if (want_status == FETCH_HEAD_MERGE)
818 warning(_("reject %s because shallow roots are not allowed to be updated"),
819 rm->peer_ref ? rm->peer_ref->name : rm->name);
820 continue;
823 commit = lookup_commit_reference_gently(&rm->old_oid,
825 if (!commit)
826 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
828 if (rm->fetch_head_status != want_status)
829 continue;
831 if (rm->peer_ref) {
832 ref = alloc_ref(rm->peer_ref->name);
833 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
834 oidcpy(&ref->new_oid, &rm->old_oid);
835 ref->force = rm->peer_ref->force;
839 if (!strcmp(rm->name, "HEAD")) {
840 kind = "";
841 what = "";
843 else if (starts_with(rm->name, "refs/heads/")) {
844 kind = "branch";
845 what = rm->name + 11;
847 else if (starts_with(rm->name, "refs/tags/")) {
848 kind = "tag";
849 what = rm->name + 10;
851 else if (starts_with(rm->name, "refs/remotes/")) {
852 kind = "remote-tracking branch";
853 what = rm->name + 13;
855 else {
856 kind = "";
857 what = rm->name;
860 url_len = strlen(url);
861 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
863 url_len = i + 1;
864 if (4 < i && !strncmp(".git", url + i - 3, 4))
865 url_len = i - 3;
867 strbuf_reset(&note);
868 if (*what) {
869 if (*kind)
870 strbuf_addf(&note, "%s ", kind);
871 strbuf_addf(&note, "'%s' of ", what);
873 switch (rm->fetch_head_status) {
874 case FETCH_HEAD_NOT_FOR_MERGE:
875 merge_status_marker = "not-for-merge";
876 /* fall-through */
877 case FETCH_HEAD_MERGE:
878 fprintf(fp, "%s\t%s\t%s",
879 oid_to_hex(&rm->old_oid),
880 merge_status_marker,
881 note.buf);
882 for (i = 0; i < url_len; ++i)
883 if ('\n' == url[i])
884 fputs("\\n", fp);
885 else
886 fputc(url[i], fp);
887 fputc('\n', fp);
888 break;
889 default:
890 /* do not write anything to FETCH_HEAD */
891 break;
894 strbuf_reset(&note);
895 if (ref) {
896 rc |= update_local_ref(ref, what, rm, &note,
897 summary_width);
898 free(ref);
899 } else
900 format_display(&note, '*',
901 *kind ? kind : "branch", NULL,
902 *what ? what : "HEAD",
903 "FETCH_HEAD", summary_width);
904 if (note.len) {
905 if (verbosity >= 0 && !shown_url) {
906 fprintf(stderr, _("From %.*s\n"),
907 url_len, url);
908 shown_url = 1;
910 if (verbosity >= 0)
911 fprintf(stderr, " %s\n", note.buf);
916 if (rc & STORE_REF_ERROR_DF_CONFLICT)
917 error(_("some local refs could not be updated; try running\n"
918 " 'git remote prune %s' to remove any old, conflicting "
919 "branches"), remote_name);
921 abort:
922 strbuf_release(&note);
923 free(url);
924 fclose(fp);
925 return rc;
929 * We would want to bypass the object transfer altogether if
930 * everything we are going to fetch already exists and is connected
931 * locally.
933 static int quickfetch(struct ref *ref_map)
935 struct ref *rm = ref_map;
936 struct check_connected_options opt = CHECK_CONNECTED_INIT;
939 * If we are deepening a shallow clone we already have these
940 * objects reachable. Running rev-list here will return with
941 * a good (0) exit status and we'll bypass the fetch that we
942 * really need to perform. Claiming failure now will ensure
943 * we perform the network exchange to deepen our history.
945 if (deepen)
946 return -1;
947 opt.quiet = 1;
948 return check_connected(iterate_ref_map, &rm, &opt);
951 static int fetch_refs(struct transport *transport, struct ref *ref_map)
953 int ret = quickfetch(ref_map);
954 if (ret)
955 ret = transport_fetch_refs(transport, ref_map);
956 if (!ret)
958 * Keep the new pack's ".keep" file around to allow the caller
959 * time to update refs to reference the new objects.
961 return 0;
962 transport_unlock_pack(transport);
963 return ret;
966 /* Update local refs based on the ref values fetched from a remote */
967 static int consume_refs(struct transport *transport, struct ref *ref_map)
969 int connectivity_checked = transport->smart_options
970 ? transport->smart_options->connectivity_checked : 0;
971 int ret = store_updated_refs(transport->url,
972 transport->remote->name,
973 connectivity_checked,
974 ref_map);
975 transport_unlock_pack(transport);
976 return ret;
979 static int prune_refs(struct refspec *rs, struct ref *ref_map,
980 const char *raw_url)
982 int url_len, i, result = 0;
983 struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
984 char *url;
985 int summary_width = transport_summary_width(stale_refs);
986 const char *dangling_msg = dry_run
987 ? _(" (%s will become dangling)")
988 : _(" (%s has become dangling)");
990 if (raw_url)
991 url = transport_anonymize_url(raw_url);
992 else
993 url = xstrdup("foreign");
995 url_len = strlen(url);
996 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
999 url_len = i + 1;
1000 if (4 < i && !strncmp(".git", url + i - 3, 4))
1001 url_len = i - 3;
1003 if (!dry_run) {
1004 struct string_list refnames = STRING_LIST_INIT_NODUP;
1006 for (ref = stale_refs; ref; ref = ref->next)
1007 string_list_append(&refnames, ref->name);
1009 result = delete_refs("fetch: prune", &refnames, 0);
1010 string_list_clear(&refnames, 0);
1013 if (verbosity >= 0) {
1014 for (ref = stale_refs; ref; ref = ref->next) {
1015 struct strbuf sb = STRBUF_INIT;
1016 if (!shown_url) {
1017 fprintf(stderr, _("From %.*s\n"), url_len, url);
1018 shown_url = 1;
1020 format_display(&sb, '-', _("[deleted]"), NULL,
1021 _("(none)"), prettify_refname(ref->name),
1022 summary_width);
1023 fprintf(stderr, " %s\n",sb.buf);
1024 strbuf_release(&sb);
1025 warn_dangling_symref(stderr, dangling_msg, ref->name);
1029 free(url);
1030 free_refs(stale_refs);
1031 return result;
1034 static void check_not_current_branch(struct ref *ref_map)
1036 struct branch *current_branch = branch_get(NULL);
1038 if (is_bare_repository() || !current_branch)
1039 return;
1041 for (; ref_map; ref_map = ref_map->next)
1042 if (ref_map->peer_ref && !strcmp(current_branch->refname,
1043 ref_map->peer_ref->name))
1044 die(_("Refusing to fetch into current branch %s "
1045 "of non-bare repository"), current_branch->refname);
1048 static int truncate_fetch_head(void)
1050 const char *filename = git_path_fetch_head();
1051 FILE *fp = fopen_for_writing(filename);
1053 if (!fp)
1054 return error_errno(_("cannot open %s"), filename);
1055 fclose(fp);
1056 return 0;
1059 static void set_option(struct transport *transport, const char *name, const char *value)
1061 int r = transport_set_option(transport, name, value);
1062 if (r < 0)
1063 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
1064 name, value, transport->url);
1065 if (r > 0)
1066 warning(_("Option \"%s\" is ignored for %s\n"),
1067 name, transport->url);
1070 static struct transport *prepare_transport(struct remote *remote, int deepen)
1072 struct transport *transport;
1073 transport = transport_get(remote, NULL);
1074 transport_set_verbosity(transport, verbosity, progress);
1075 transport->family = family;
1076 if (upload_pack)
1077 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1078 if (keep)
1079 set_option(transport, TRANS_OPT_KEEP, "yes");
1080 if (depth)
1081 set_option(transport, TRANS_OPT_DEPTH, depth);
1082 if (deepen && deepen_since)
1083 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1084 if (deepen && deepen_not.nr)
1085 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1086 (const char *)&deepen_not);
1087 if (deepen_relative)
1088 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1089 if (update_shallow)
1090 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1091 if (filter_options.choice) {
1092 set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
1093 filter_options.filter_spec);
1094 set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1096 return transport;
1099 static void backfill_tags(struct transport *transport, struct ref *ref_map)
1101 int cannot_reuse;
1104 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1105 * when remote helper is used (setting it to an empty string
1106 * is not unsetting). We could extend the remote helper
1107 * protocol for that, but for now, just force a new connection
1108 * without deepen-since. Similar story for deepen-not.
1110 cannot_reuse = transport->cannot_reuse ||
1111 deepen_since || deepen_not.nr;
1112 if (cannot_reuse) {
1113 gsecondary = prepare_transport(transport->remote, 0);
1114 transport = gsecondary;
1117 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1118 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1119 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1120 if (!fetch_refs(transport, ref_map))
1121 consume_refs(transport, ref_map);
1123 if (gsecondary) {
1124 transport_disconnect(gsecondary);
1125 gsecondary = NULL;
1129 static int do_fetch(struct transport *transport,
1130 struct refspec *rs)
1132 struct ref *ref_map;
1133 int autotags = (transport->remote->fetch_tags == 1);
1134 int retcode = 0;
1135 const struct ref *remote_refs;
1136 struct argv_array ref_prefixes = ARGV_ARRAY_INIT;
1138 if (tags == TAGS_DEFAULT) {
1139 if (transport->remote->fetch_tags == 2)
1140 tags = TAGS_SET;
1141 if (transport->remote->fetch_tags == -1)
1142 tags = TAGS_UNSET;
1145 /* if not appending, truncate FETCH_HEAD */
1146 if (!append && !dry_run) {
1147 retcode = truncate_fetch_head();
1148 if (retcode)
1149 goto cleanup;
1152 if (rs->nr)
1153 refspec_ref_prefixes(rs, &ref_prefixes);
1154 else if (transport->remote && transport->remote->fetch.nr)
1155 refspec_ref_prefixes(&transport->remote->fetch, &ref_prefixes);
1157 if (ref_prefixes.argc &&
1158 (tags == TAGS_SET || (tags == TAGS_DEFAULT && !rs->nr))) {
1159 argv_array_push(&ref_prefixes, "refs/tags/");
1162 remote_refs = transport_get_remote_refs(transport, &ref_prefixes);
1163 argv_array_clear(&ref_prefixes);
1165 ref_map = get_ref_map(transport->remote, remote_refs, rs,
1166 tags, &autotags);
1167 if (!update_head_ok)
1168 check_not_current_branch(ref_map);
1170 if (tags == TAGS_DEFAULT && autotags)
1171 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1172 if (prune) {
1174 * We only prune based on refspecs specified
1175 * explicitly (via command line or configuration); we
1176 * don't care whether --tags was specified.
1178 if (rs->nr) {
1179 prune_refs(rs, ref_map, transport->url);
1180 } else {
1181 prune_refs(&transport->remote->fetch,
1182 ref_map,
1183 transport->url);
1186 if (fetch_refs(transport, ref_map) || consume_refs(transport, ref_map)) {
1187 free_refs(ref_map);
1188 retcode = 1;
1189 goto cleanup;
1191 free_refs(ref_map);
1193 /* if neither --no-tags nor --tags was specified, do automated tag
1194 * following ... */
1195 if (tags == TAGS_DEFAULT && autotags) {
1196 struct ref **tail = &ref_map;
1197 ref_map = NULL;
1198 find_non_local_tags(remote_refs, &ref_map, &tail);
1199 if (ref_map)
1200 backfill_tags(transport, ref_map);
1201 free_refs(ref_map);
1204 cleanup:
1205 return retcode;
1208 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1210 struct string_list *list = priv;
1211 if (!remote->skip_default_update)
1212 string_list_append(list, remote->name);
1213 return 0;
1216 struct remote_group_data {
1217 const char *name;
1218 struct string_list *list;
1221 static int get_remote_group(const char *key, const char *value, void *priv)
1223 struct remote_group_data *g = priv;
1225 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1226 /* split list by white space */
1227 while (*value) {
1228 size_t wordlen = strcspn(value, " \t\n");
1230 if (wordlen >= 1)
1231 string_list_append_nodup(g->list,
1232 xstrndup(value, wordlen));
1233 value += wordlen + (value[wordlen] != '\0');
1237 return 0;
1240 static int add_remote_or_group(const char *name, struct string_list *list)
1242 int prev_nr = list->nr;
1243 struct remote_group_data g;
1244 g.name = name; g.list = list;
1246 git_config(get_remote_group, &g);
1247 if (list->nr == prev_nr) {
1248 struct remote *remote = remote_get(name);
1249 if (!remote_is_configured(remote, 0))
1250 return 0;
1251 string_list_append(list, remote->name);
1253 return 1;
1256 static void add_options_to_argv(struct argv_array *argv)
1258 if (dry_run)
1259 argv_array_push(argv, "--dry-run");
1260 if (prune != -1)
1261 argv_array_push(argv, prune ? "--prune" : "--no-prune");
1262 if (prune_tags != -1)
1263 argv_array_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1264 if (update_head_ok)
1265 argv_array_push(argv, "--update-head-ok");
1266 if (force)
1267 argv_array_push(argv, "--force");
1268 if (keep)
1269 argv_array_push(argv, "--keep");
1270 if (recurse_submodules == RECURSE_SUBMODULES_ON)
1271 argv_array_push(argv, "--recurse-submodules");
1272 else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1273 argv_array_push(argv, "--recurse-submodules=on-demand");
1274 if (tags == TAGS_SET)
1275 argv_array_push(argv, "--tags");
1276 else if (tags == TAGS_UNSET)
1277 argv_array_push(argv, "--no-tags");
1278 if (verbosity >= 2)
1279 argv_array_push(argv, "-v");
1280 if (verbosity >= 1)
1281 argv_array_push(argv, "-v");
1282 else if (verbosity < 0)
1283 argv_array_push(argv, "-q");
1287 static int fetch_multiple(struct string_list *list)
1289 int i, result = 0;
1290 struct argv_array argv = ARGV_ARRAY_INIT;
1292 if (!append && !dry_run) {
1293 int errcode = truncate_fetch_head();
1294 if (errcode)
1295 return errcode;
1298 argv_array_pushl(&argv, "fetch", "--append", NULL);
1299 add_options_to_argv(&argv);
1301 for (i = 0; i < list->nr; i++) {
1302 const char *name = list->items[i].string;
1303 argv_array_push(&argv, name);
1304 if (verbosity >= 0)
1305 printf(_("Fetching %s\n"), name);
1306 if (run_command_v_opt(argv.argv, RUN_GIT_CMD)) {
1307 error(_("Could not fetch %s"), name);
1308 result = 1;
1310 argv_array_pop(&argv);
1313 argv_array_clear(&argv);
1314 return result;
1318 * Fetching from the promisor remote should use the given filter-spec
1319 * or inherit the default filter-spec from the config.
1321 static inline void fetch_one_setup_partial(struct remote *remote)
1324 * Explicit --no-filter argument overrides everything, regardless
1325 * of any prior partial clones and fetches.
1327 if (filter_options.no_filter)
1328 return;
1331 * If no prior partial clone/fetch and the current fetch DID NOT
1332 * request a partial-fetch, do a normal fetch.
1334 if (!repository_format_partial_clone && !filter_options.choice)
1335 return;
1338 * If this is the FIRST partial-fetch request, we enable partial
1339 * on this repo and remember the given filter-spec as the default
1340 * for subsequent fetches to this remote.
1342 if (!repository_format_partial_clone && filter_options.choice) {
1343 partial_clone_register(remote->name, &filter_options);
1344 return;
1348 * We are currently limited to only ONE promisor remote and only
1349 * allow partial-fetches from the promisor remote.
1351 if (strcmp(remote->name, repository_format_partial_clone)) {
1352 if (filter_options.choice)
1353 die(_("--filter can only be used with the remote configured in core.partialClone"));
1354 return;
1358 * Do a partial-fetch from the promisor remote using either the
1359 * explicitly given filter-spec or inherit the filter-spec from
1360 * the config.
1362 if (!filter_options.choice)
1363 partial_clone_get_default_filter_spec(&filter_options);
1364 return;
1367 static int fetch_one(struct remote *remote, int argc, const char **argv, int prune_tags_ok)
1369 struct refspec rs = REFSPEC_INIT_FETCH;
1370 int i;
1371 int exit_code;
1372 int maybe_prune_tags;
1373 int remote_via_config = remote_is_configured(remote, 0);
1375 if (!remote)
1376 die(_("No remote repository specified. Please, specify either a URL or a\n"
1377 "remote name from which new revisions should be fetched."));
1379 gtransport = prepare_transport(remote, 1);
1381 if (prune < 0) {
1382 /* no command line request */
1383 if (0 <= remote->prune)
1384 prune = remote->prune;
1385 else if (0 <= fetch_prune_config)
1386 prune = fetch_prune_config;
1387 else
1388 prune = PRUNE_BY_DEFAULT;
1391 if (prune_tags < 0) {
1392 /* no command line request */
1393 if (0 <= remote->prune_tags)
1394 prune_tags = remote->prune_tags;
1395 else if (0 <= fetch_prune_tags_config)
1396 prune_tags = fetch_prune_tags_config;
1397 else
1398 prune_tags = PRUNE_TAGS_BY_DEFAULT;
1401 maybe_prune_tags = prune_tags_ok && prune_tags;
1402 if (maybe_prune_tags && remote_via_config)
1403 refspec_append(&remote->fetch, TAG_REFSPEC);
1405 if (maybe_prune_tags && (argc || !remote_via_config))
1406 refspec_append(&rs, TAG_REFSPEC);
1408 for (i = 0; i < argc; i++) {
1409 if (!strcmp(argv[i], "tag")) {
1410 char *tag;
1411 i++;
1412 if (i >= argc)
1413 die(_("You need to specify a tag name."));
1415 tag = xstrfmt("refs/tags/%s:refs/tags/%s",
1416 argv[i], argv[i]);
1417 refspec_append(&rs, tag);
1418 free(tag);
1419 } else {
1420 refspec_append(&rs, argv[i]);
1424 if (server_options.nr)
1425 gtransport->server_options = &server_options;
1427 sigchain_push_common(unlock_pack_on_signal);
1428 atexit(unlock_pack);
1429 exit_code = do_fetch(gtransport, &rs);
1430 refspec_clear(&rs);
1431 transport_disconnect(gtransport);
1432 gtransport = NULL;
1433 return exit_code;
1436 int cmd_fetch(int argc, const char **argv, const char *prefix)
1438 int i;
1439 struct string_list list = STRING_LIST_INIT_DUP;
1440 struct remote *remote = NULL;
1441 int result = 0;
1442 int prune_tags_ok = 1;
1443 struct argv_array argv_gc_auto = ARGV_ARRAY_INIT;
1445 packet_trace_identity("fetch");
1447 fetch_if_missing = 0;
1449 /* Record the command line for the reflog */
1450 strbuf_addstr(&default_rla, "fetch");
1451 for (i = 1; i < argc; i++)
1452 strbuf_addf(&default_rla, " %s", argv[i]);
1454 config_from_gitmodules(gitmodules_fetch_config, NULL);
1455 git_config(git_fetch_config, NULL);
1457 argc = parse_options(argc, argv, prefix,
1458 builtin_fetch_options, builtin_fetch_usage, 0);
1460 if (deepen_relative) {
1461 if (deepen_relative < 0)
1462 die(_("Negative depth in --deepen is not supported"));
1463 if (depth)
1464 die(_("--deepen and --depth are mutually exclusive"));
1465 depth = xstrfmt("%d", deepen_relative);
1467 if (unshallow) {
1468 if (depth)
1469 die(_("--depth and --unshallow cannot be used together"));
1470 else if (!is_repository_shallow())
1471 die(_("--unshallow on a complete repository does not make sense"));
1472 else
1473 depth = xstrfmt("%d", INFINITE_DEPTH);
1476 /* no need to be strict, transport_set_option() will validate it again */
1477 if (depth && atoi(depth) < 1)
1478 die(_("depth %s is not a positive number"), depth);
1479 if (depth || deepen_since || deepen_not.nr)
1480 deepen = 1;
1482 if (filter_options.choice && !repository_format_partial_clone)
1483 die("--filter can only be used when extensions.partialClone is set");
1485 if (all) {
1486 if (argc == 1)
1487 die(_("fetch --all does not take a repository argument"));
1488 else if (argc > 1)
1489 die(_("fetch --all does not make sense with refspecs"));
1490 (void) for_each_remote(get_one_remote_for_fetch, &list);
1491 } else if (argc == 0) {
1492 /* No arguments -- use default remote */
1493 remote = remote_get(NULL);
1494 } else if (multiple) {
1495 /* All arguments are assumed to be remotes or groups */
1496 for (i = 0; i < argc; i++)
1497 if (!add_remote_or_group(argv[i], &list))
1498 die(_("No such remote or remote group: %s"), argv[i]);
1499 } else {
1500 /* Single remote or group */
1501 (void) add_remote_or_group(argv[0], &list);
1502 if (list.nr > 1) {
1503 /* More than one remote */
1504 if (argc > 1)
1505 die(_("Fetching a group and specifying refspecs does not make sense"));
1506 } else {
1507 /* Zero or one remotes */
1508 remote = remote_get(argv[0]);
1509 prune_tags_ok = (argc == 1);
1510 argc--;
1511 argv++;
1515 if (remote) {
1516 if (filter_options.choice || repository_format_partial_clone)
1517 fetch_one_setup_partial(remote);
1518 result = fetch_one(remote, argc, argv, prune_tags_ok);
1519 } else {
1520 if (filter_options.choice)
1521 die(_("--filter can only be used with the remote configured in core.partialClone"));
1522 /* TODO should this also die if we have a previous partial-clone? */
1523 result = fetch_multiple(&list);
1526 if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
1527 struct argv_array options = ARGV_ARRAY_INIT;
1529 add_options_to_argv(&options);
1530 result = fetch_populated_submodules(the_repository,
1531 &options,
1532 submodule_prefix,
1533 recurse_submodules,
1534 recurse_submodules_default,
1535 verbosity < 0,
1536 max_children);
1537 argv_array_clear(&options);
1540 string_list_clear(&list, 0);
1542 close_all_packs(the_repository->objects);
1544 argv_array_pushl(&argv_gc_auto, "gc", "--auto", NULL);
1545 if (verbosity < 0)
1546 argv_array_push(&argv_gc_auto, "--quiet");
1547 run_command_v_opt(argv_gc_auto.argv, RUN_GIT_CMD);
1548 argv_array_clear(&argv_gc_auto);
1550 return result;