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