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