]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fetch.c
fetch: merge fetching and consuming refs
[thirdparty/git.git] / builtin / fetch.c
CommitLineData
b888d61c
DB
1/*
2 * "git fetch"
3 */
4#include "cache.h"
b2141fc1 5#include "config.h"
e724197f 6#include "repository.h"
b888d61c 7#include "refs.h"
ec0cb496 8#include "refspec.h"
cbd53a21 9#include "object-store.h"
b7e2d8bc 10#include "oidset.h"
b888d61c
DB
11#include "commit.h"
12#include "builtin.h"
c455c87c 13#include "string-list.h"
b888d61c
DB
14#include "remote.h"
15#include "transport.h"
4191c356 16#include "run-command.h"
83201998 17#include "parse-options.h"
4a16d072 18#include "sigchain.h"
027771fc 19#include "submodule-config.h"
7dce19d3 20#include "submodule.h"
f96400cb 21#include "connected.h"
dbbcd44f 22#include "strvec.h"
6bc91f23 23#include "utf8.h"
3836d88a 24#include "packfile.h"
acb0c572 25#include "list-objects-filter-options.h"
64043556 26#include "commit-reach.h"
24bc1a12 27#include "branch.h"
b14ed5ad 28#include "promisor-remote.h"
50f26bd0 29#include "commit-graph.h"
120ad2b0 30#include "shallow.h"
b888d61c 31
377444b4
DS
32#define FORCED_UPDATES_DELAY_WARNING_IN_MS (10 * 1000)
33
83201998 34static const char * const builtin_fetch_usage[] = {
719acedb
NTND
35 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
36 N_("git fetch [<options>] <group>"),
37 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
38 N_("git fetch --all [<options>]"),
83201998
KH
39 NULL
40};
b888d61c 41
83201998
KH
42enum {
43 TAGS_UNSET = 0,
44 TAGS_DEFAULT = 1,
45 TAGS_SET = 2
46};
47
737c5a9c 48static int fetch_prune_config = -1; /* unspecified */
cdbd70c4 49static int fetch_show_forced_updates = 1;
377444b4 50static uint64_t forced_updates_ms = 0;
2e03115d 51static int prefetch = 0;
737c5a9c
MS
52static int prune = -1; /* unspecified */
53#define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
54
97716d21
ÆAB
55static int fetch_prune_tags_config = -1; /* unspecified */
56static int prune_tags = -1; /* unspecified */
57#define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
58
24bc1a12 59static int all, append, dry_run, force, keep, multiple, update_head_ok;
887952b8 60static int write_fetch_head = 1;
24bc1a12 61static int verbosity, deepen_relative, set_upstream;
8c69832d 62static int progress = -1;
c3d6b703 63static int enable_auto_gc = 1;
508ea882 64static int tags = TAGS_DEFAULT, unshallow, update_shallow, deepen;
d54dea77
JS
65static int max_jobs = -1, submodule_fetch_jobs_config = -1;
66static int fetch_parallel_config = 1;
c7b190da 67static int atomic_fetch;
c915f11e 68static enum transport_family family;
4191c356 69static const char *depth;
508ea882 70static const char *deepen_since;
83201998 71static const char *upload_pack;
a45a2600 72static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
2d324efa 73static struct strbuf default_rla = STRBUF_INIT;
af234459 74static struct transport *gtransport;
b26ed430 75static struct transport *gsecondary;
7dce19d3 76static const char *submodule_prefix = "";
8c69832d 77static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
e8906a90 78static int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
4b3b33a7 79static int shown_url = 0;
e4cffacc 80static struct refspec refmap = REFSPEC_INIT_FETCH;
acb0c572 81static struct list_objects_filter_options filter_options;
5e3548ef 82static struct string_list server_options = STRING_LIST_INIT_DUP;
3390e42a 83static struct string_list negotiation_tip = STRING_LIST_INIT_NODUP;
c14e6e79 84static int fetch_write_commit_graph = -1;
2b713c27 85static int stdin_refspecs = 0;
9c1e657a 86static int negotiate_only;
e4022ed2 87
737c5a9c
MS
88static int git_fetch_config(const char *k, const char *v, void *cb)
89{
90 if (!strcmp(k, "fetch.prune")) {
91 fetch_prune_config = git_config_bool(k, v);
92 return 0;
93 }
58f4203e 94
97716d21
ÆAB
95 if (!strcmp(k, "fetch.prunetags")) {
96 fetch_prune_tags_config = git_config_bool(k, v);
97 return 0;
98 }
99
cdbd70c4
DS
100 if (!strcmp(k, "fetch.showforcedupdates")) {
101 fetch_show_forced_updates = git_config_bool(k, v);
102 return 0;
103 }
104
58f4203e
SB
105 if (!strcmp(k, "submodule.recurse")) {
106 int r = git_config_bool(k, v) ?
107 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
108 recurse_submodules = r;
109 }
110
f20e7c1e 111 if (!strcmp(k, "submodule.fetchjobs")) {
d54dea77 112 submodule_fetch_jobs_config = parse_submodule_fetchjobs(k, v);
f20e7c1e 113 return 0;
8fa29159
BW
114 } else if (!strcmp(k, "fetch.recursesubmodules")) {
115 recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
116 return 0;
f20e7c1e
BW
117 }
118
d54dea77
JS
119 if (!strcmp(k, "fetch.parallel")) {
120 fetch_parallel_config = git_config_int(k, v);
121 if (fetch_parallel_config < 0)
122 die(_("fetch.parallel cannot be negative"));
123 return 0;
124 }
125
72549dfd 126 return git_default_config(k, v, cb);
737c5a9c
MS
127}
128
c5558f80
JH
129static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
130{
517fe807
JK
131 BUG_ON_OPT_NEG(unset);
132
c5558f80
JH
133 /*
134 * "git fetch --refmap='' origin foo"
135 * can be used to tell the command not to store anywhere
136 */
e4cffacc
BW
137 refspec_append(&refmap, arg);
138
c5558f80
JH
139 return 0;
140}
141
83201998 142static struct option builtin_fetch_options[] = {
7f87aff2 143 OPT__VERBOSITY(&verbosity),
d5d09d47
SB
144 OPT_BOOL(0, "all", &all,
145 N_("fetch from all remotes")),
24bc1a12
CB
146 OPT_BOOL(0, "set-upstream", &set_upstream,
147 N_("set upstream for git pull/fetch")),
d5d09d47
SB
148 OPT_BOOL('a', "append", &append,
149 N_("append to .git/FETCH_HEAD instead of overwriting")),
c7b190da
PS
150 OPT_BOOL(0, "atomic", &atomic_fetch,
151 N_("use atomic transaction to update references")),
719acedb
NTND
152 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
153 N_("path to upload pack on remote end")),
8cd4b7c1 154 OPT__FORCE(&force, N_("force overwrite of local reference"), 0),
d5d09d47
SB
155 OPT_BOOL('m', "multiple", &multiple,
156 N_("fetch from multiple remotes")),
83201998 157 OPT_SET_INT('t', "tags", &tags,
719acedb 158 N_("fetch all tags and associated objects"), TAGS_SET),
e7951290 159 OPT_SET_INT('n', NULL, &tags,
719acedb 160 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
d54dea77 161 OPT_INTEGER('j', "jobs", &max_jobs,
62104ba1 162 N_("number of submodules fetched in parallel")),
2e03115d
DS
163 OPT_BOOL(0, "prefetch", &prefetch,
164 N_("modify the refspec to place all refs within refs/prefetch/")),
d5d09d47
SB
165 OPT_BOOL('p', "prune", &prune,
166 N_("prune remote-tracking branches no longer on remote")),
97716d21
ÆAB
167 OPT_BOOL('P', "prune-tags", &prune_tags,
168 N_("prune local tags no longer on remote and clobber changed tags")),
203c8533 169 OPT_CALLBACK_F(0, "recurse-submodules", &recurse_submodules, N_("on-demand"),
719acedb 170 N_("control recursive fetching of submodules"),
203c8533 171 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules),
d5d09d47
SB
172 OPT_BOOL(0, "dry-run", &dry_run,
173 N_("dry run")),
887952b8
JH
174 OPT_BOOL(0, "write-fetch-head", &write_fetch_head,
175 N_("write fetched references to the FETCH_HEAD file")),
d5d09d47
SB
176 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
177 OPT_BOOL('u', "update-head-ok", &update_head_ok,
719acedb
NTND
178 N_("allow updating of HEAD ref")),
179 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
180 OPT_STRING(0, "depth", &depth, N_("depth"),
181 N_("deepen history of shallow clone")),
508ea882
NTND
182 OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
183 N_("deepen history of shallow repository based on time")),
a45a2600 184 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
6d873865 185 N_("deepen history of shallow clone, excluding rev")),
cccf74e2
NTND
186 OPT_INTEGER(0, "deepen", &deepen_relative,
187 N_("deepen history of shallow clone")),
3e4a67b4
NTND
188 OPT_SET_INT_F(0, "unshallow", &unshallow,
189 N_("convert to a complete repository"),
190 1, PARSE_OPT_NONEG),
719acedb
NTND
191 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
192 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
203c8533 193 OPT_CALLBACK_F(0, "recurse-submodules-default",
8c69832d
SB
194 &recurse_submodules_default, N_("on-demand"),
195 N_("default for recursive fetching of submodules "
196 "(lower priority than config files)"),
203c8533 197 PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules),
48d25cae
NTND
198 OPT_BOOL(0, "update-shallow", &update_shallow,
199 N_("accept refs that update .git/shallow")),
203c8533
DL
200 OPT_CALLBACK_F(0, "refmap", NULL, N_("refmap"),
201 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg),
5e3548ef 202 OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
c915f11e
EW
203 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
204 TRANSPORT_FAMILY_IPV4),
205 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
206 TRANSPORT_FAMILY_IPV6),
3390e42a
JT
207 OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip, N_("revision"),
208 N_("report that we have only objects reachable from this object")),
9c1e657a
JT
209 OPT_BOOL(0, "negotiate-only", &negotiate_only,
210 N_("do not fetch a packfile; instead, print ancestors of negotiation tips")),
acb0c572 211 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
a95ce124
DS
212 OPT_BOOL(0, "auto-maintenance", &enable_auto_gc,
213 N_("run 'maintenance --auto' after fetching")),
c3d6b703 214 OPT_BOOL(0, "auto-gc", &enable_auto_gc,
a95ce124 215 N_("run 'maintenance --auto' after fetching")),
cdbd70c4
DS
216 OPT_BOOL(0, "show-forced-updates", &fetch_show_forced_updates,
217 N_("check for forced-updates on all updated branches")),
c14e6e79
JS
218 OPT_BOOL(0, "write-commit-graph", &fetch_write_commit_graph,
219 N_("write the commit-graph after fetching")),
2b713c27
JT
220 OPT_BOOL(0, "stdin", &stdin_refspecs,
221 N_("accept refspecs from stdin")),
83201998
KH
222 OPT_END()
223};
224
e4022ed2
SP
225static void unlock_pack(void)
226{
af234459
JH
227 if (gtransport)
228 transport_unlock_pack(gtransport);
b26ed430
JH
229 if (gsecondary)
230 transport_unlock_pack(gsecondary);
e4022ed2
SP
231}
232
233static void unlock_pack_on_signal(int signo)
234{
235 unlock_pack();
4a16d072 236 sigchain_pop(signo);
e4022ed2
SP
237 raise(signo);
238}
b888d61c 239
85682c19 240static void add_merge_config(struct ref **head,
4577370e 241 const struct ref *remote_refs,
85682c19
SP
242 struct branch *branch,
243 struct ref ***tail)
b888d61c 244{
85682c19 245 int i;
b888d61c 246
85682c19
SP
247 for (i = 0; i < branch->merge_nr; i++) {
248 struct ref *rm, **old_tail = *tail;
0ad4a5ff 249 struct refspec_item refspec;
85682c19
SP
250
251 for (rm = *head; rm; rm = rm->next) {
252 if (branch_merge_matches(branch, i, rm->name)) {
900f2814 253 rm->fetch_head_status = FETCH_HEAD_MERGE;
85682c19
SP
254 break;
255 }
b888d61c 256 }
85682c19
SP
257 if (rm)
258 continue;
259
9ad7c5ae 260 /*
8b3f3f84 261 * Not fetched to a remote-tracking branch? We need to fetch
85682c19 262 * it anyway to allow this branch's "branch.$name.merge"
05207a28 263 * to be honored by 'git pull', but we do not have to
9ad7c5ae
JH
264 * fail if branch.$name.merge is misconfigured to point
265 * at a nonexisting branch. If we were indeed called by
05207a28 266 * 'git pull', it will notice the misconfiguration because
9ad7c5ae
JH
267 * there is no entry in the resulting FETCH_HEAD marked
268 * for merging.
85682c19 269 */
8da61a2a 270 memset(&refspec, 0, sizeof(refspec));
85682c19 271 refspec.src = branch->merge[i]->src;
9ad7c5ae 272 get_fetch_map(remote_refs, &refspec, tail, 1);
85682c19 273 for (rm = *old_tail; rm; rm = rm->next)
900f2814 274 rm->fetch_head_status = FETCH_HEAD_MERGE;
b888d61c
DB
275 }
276}
277
b7e2d8bc 278static void create_fetch_oidset(struct ref **head, struct oidset *out)
a0fbb5a3
MH
279{
280 struct ref *rm = *head;
281 while (rm) {
b7e2d8bc 282 oidset_insert(out, &rm->old_oid);
a0fbb5a3
MH
283 rm = rm->next;
284 }
a0fbb5a3
MH
285}
286
e198b3a7 287struct refname_hash_entry {
e2b5038d 288 struct hashmap_entry ent;
e198b3a7 289 struct object_id oid;
f80d9223 290 int ignore;
e198b3a7
JH
291 char refname[FLEX_ARRAY];
292};
293
294static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data,
939af16e
EW
295 const struct hashmap_entry *eptr,
296 const struct hashmap_entry *entry_or_key,
e198b3a7
JH
297 const void *keydata)
298{
939af16e 299 const struct refname_hash_entry *e1, *e2;
e198b3a7 300
939af16e
EW
301 e1 = container_of(eptr, const struct refname_hash_entry, ent);
302 e2 = container_of(entry_or_key, const struct refname_hash_entry, ent);
e198b3a7
JH
303 return strcmp(e1->refname, keydata ? keydata : e2->refname);
304}
305
306static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
307 const char *refname,
308 const struct object_id *oid)
309{
310 struct refname_hash_entry *ent;
311 size_t len = strlen(refname);
312
313 FLEX_ALLOC_MEM(ent, refname, refname, len);
d22245a2 314 hashmap_entry_init(&ent->ent, strhash(refname));
e198b3a7 315 oidcpy(&ent->oid, oid);
b94e5c1d 316 hashmap_add(map, &ent->ent);
e198b3a7
JH
317 return ent;
318}
319
320static int add_one_refname(const char *refname,
321 const struct object_id *oid,
322 int flag, void *cbdata)
323{
324 struct hashmap *refname_map = cbdata;
325
326 (void) refname_hash_add(refname_map, refname, oid);
327 return 0;
328}
329
330static void refname_hash_init(struct hashmap *map)
331{
332 hashmap_init(map, refname_hash_entry_cmp, NULL, 0);
333}
334
335static int refname_hash_exists(struct hashmap *map, const char *refname)
336{
337 return !!hashmap_get_from_hash(map, strhash(refname), refname);
338}
339
a8363b57
FC
340static void clear_item(struct refname_hash_entry *item)
341{
f80d9223 342 item->ignore = 1;
a8363b57
FC
343}
344
6d1700d5
BW
345static void find_non_local_tags(const struct ref *refs,
346 struct ref **head,
347 struct ref ***tail)
a0fbb5a3 348{
e198b3a7
JH
349 struct hashmap existing_refs;
350 struct hashmap remote_refs;
b7e2d8bc 351 struct oidset fetch_oids = OIDSET_INIT;
e198b3a7
JH
352 struct string_list remote_refs_list = STRING_LIST_INIT_NODUP;
353 struct string_list_item *remote_ref_item;
a0fbb5a3 354 const struct ref *ref;
e198b3a7 355 struct refname_hash_entry *item = NULL;
3e96c668 356 const int quick_flags = OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT;
e198b3a7
JH
357
358 refname_hash_init(&existing_refs);
359 refname_hash_init(&remote_refs);
b7e2d8bc 360 create_fetch_oidset(head, &fetch_oids);
a0fbb5a3 361
e198b3a7 362 for_each_ref(add_one_refname, &existing_refs);
6d1700d5 363 for (ref = refs; ref; ref = ref->next) {
ad704485 364 if (!starts_with(ref->name, "refs/tags/"))
a0fbb5a3
MH
365 continue;
366
367 /*
368 * The peeled ref always follows the matching base
369 * ref, so if we see a peeled ref that we don't want
370 * to fetch then we can mark the ref entry in the list
371 * as one to ignore by setting util to NULL.
372 */
ad704485 373 if (ends_with(ref->name, "^{}")) {
5827a035 374 if (item &&
3e96c668 375 !has_object_file_with_flags(&ref->old_oid, quick_flags) &&
b7e2d8bc 376 !oidset_contains(&fetch_oids, &ref->old_oid) &&
3e96c668 377 !has_object_file_with_flags(&item->oid, quick_flags) &&
b7e2d8bc 378 !oidset_contains(&fetch_oids, &item->oid))
a8363b57 379 clear_item(item);
a0fbb5a3
MH
380 item = NULL;
381 continue;
382 }
383
384 /*
385 * If item is non-NULL here, then we previously saw a
386 * ref not followed by a peeled reference, so we need
387 * to check if it is a lightweight tag that we want to
388 * fetch.
389 */
5827a035 390 if (item &&
3e96c668 391 !has_object_file_with_flags(&item->oid, quick_flags) &&
b7e2d8bc 392 !oidset_contains(&fetch_oids, &item->oid))
a8363b57 393 clear_item(item);
a0fbb5a3
MH
394
395 item = NULL;
396
397 /* skip duplicates and refs that we already have */
e198b3a7
JH
398 if (refname_hash_exists(&remote_refs, ref->name) ||
399 refname_hash_exists(&existing_refs, ref->name))
a0fbb5a3
MH
400 continue;
401
e198b3a7
JH
402 item = refname_hash_add(&remote_refs, ref->name, &ref->old_oid);
403 string_list_insert(&remote_refs_list, ref->name);
a0fbb5a3 404 }
6da1a258 405 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
a0fbb5a3
MH
406
407 /*
408 * We may have a final lightweight tag that needs to be
409 * checked to see if it needs fetching.
410 */
5827a035 411 if (item &&
3e96c668 412 !has_object_file_with_flags(&item->oid, quick_flags) &&
b7e2d8bc 413 !oidset_contains(&fetch_oids, &item->oid))
a8363b57 414 clear_item(item);
a0fbb5a3
MH
415
416 /*
e198b3a7 417 * For all the tags in the remote_refs_list,
a0fbb5a3
MH
418 * add them to the list of refs to be fetched
419 */
e198b3a7
JH
420 for_each_string_list_item(remote_ref_item, &remote_refs_list) {
421 const char *refname = remote_ref_item->string;
9528b80b 422 struct ref *rm;
f23a4651 423 unsigned int hash = strhash(refname);
e198b3a7 424
f23a4651
EW
425 item = hashmap_get_entry_from_hash(&remote_refs, hash, refname,
426 struct refname_hash_entry, ent);
e198b3a7
JH
427 if (!item)
428 BUG("unseen remote ref?");
429
a0fbb5a3 430 /* Unless we have already decided to ignore this item... */
f80d9223 431 if (item->ignore)
9528b80b
FC
432 continue;
433
434 rm = alloc_ref(item->refname);
435 rm->peer_ref = alloc_ref(item->refname);
436 oidcpy(&rm->old_oid, &item->oid);
437 **tail = rm;
438 *tail = &rm->next;
a0fbb5a3 439 }
6da1a258 440 hashmap_clear_and_free(&remote_refs, struct refname_hash_entry, ent);
e198b3a7 441 string_list_clear(&remote_refs_list, 0);
b7e2d8bc 442 oidset_clear(&fetch_oids);
a0fbb5a3 443}
767f176a 444
2e03115d
DS
445static void filter_prefetch_refspec(struct refspec *rs)
446{
447 int i;
448
449 if (!prefetch)
450 return;
451
452 for (i = 0; i < rs->nr; i++) {
453 struct strbuf new_dst = STRBUF_INIT;
454 char *old_dst;
455 const char *sub = NULL;
456
457 if (rs->items[i].negative)
458 continue;
459 if (!rs->items[i].dst ||
460 (rs->items[i].src &&
461 !strncmp(rs->items[i].src, "refs/tags/", 10))) {
462 int j;
463
464 free(rs->items[i].src);
465 free(rs->items[i].dst);
466
467 for (j = i + 1; j < rs->nr; j++) {
468 rs->items[j - 1] = rs->items[j];
469 rs->raw[j - 1] = rs->raw[j];
470 }
471 rs->nr--;
472 i--;
473 continue;
474 }
475
476 old_dst = rs->items[i].dst;
477 strbuf_addstr(&new_dst, "refs/prefetch/");
478
479 /*
480 * If old_dst starts with "refs/", then place
481 * sub after that prefix. Otherwise, start at
482 * the beginning of the string.
483 */
484 if (!skip_prefix(old_dst, "refs/", &sub))
485 sub = old_dst;
486 strbuf_addstr(&new_dst, sub);
487
488 rs->items[i].dst = strbuf_detach(&new_dst, NULL);
489 rs->items[i].force = 1;
490
491 free(old_dst);
492 }
493}
494
6d1700d5
BW
495static struct ref *get_ref_map(struct remote *remote,
496 const struct ref *remote_refs,
65d96c8b 497 struct refspec *rs,
f137a45e 498 int tags, int *autotags)
b888d61c
DB
499{
500 int i;
501 struct ref *rm;
502 struct ref *ref_map = NULL;
503 struct ref **tail = &ref_map;
504
c5a84e92
MH
505 /* opportunistically-updated references: */
506 struct ref *orefs = NULL, **oref_tail = &orefs;
b888d61c 507
e198b3a7 508 struct hashmap existing_refs;
abcb7eeb 509 int existing_refs_populated = 0;
f2690487 510
2e03115d
DS
511 filter_prefetch_refspec(rs);
512 if (remote)
513 filter_prefetch_refspec(&remote->fetch);
514
65d96c8b 515 if (rs->nr) {
c5558f80 516 struct refspec *fetch_refspec;
c5558f80 517
65d96c8b
BW
518 for (i = 0; i < rs->nr; i++) {
519 get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
520 if (rs->items[i].dst && rs->items[i].dst[0])
b888d61c
DB
521 *autotags = 1;
522 }
0281c930 523 /* Merge everything on the command line (but not --tags) */
b888d61c 524 for (rm = ref_map; rm; rm = rm->next)
900f2814 525 rm->fetch_head_status = FETCH_HEAD_MERGE;
f2690487
JK
526
527 /*
0281c930
MH
528 * For any refs that we happen to be fetching via
529 * command-line arguments, the destination ref might
530 * have been missing or have been different than the
531 * remote-tracking ref that would be derived from the
532 * configured refspec. In these cases, we want to
533 * take the opportunity to update their configured
534 * remote-tracking reference. However, we do not want
535 * to mention these entries in FETCH_HEAD at all, as
536 * they would simply be duplicates of existing
537 * entries, so we set them FETCH_HEAD_IGNORE below.
538 *
539 * We compute these entries now, based only on the
540 * refspecs specified on the command line. But we add
541 * them to the list following the refspecs resulting
542 * from the tags option so that one of the latter,
543 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
544 * by ref_remove_duplicates() in favor of one of these
545 * opportunistic entries with FETCH_HEAD_IGNORE.
f2690487 546 */
65d96c8b
BW
547 if (refmap.nr)
548 fetch_refspec = &refmap;
549 else
6d1700d5 550 fetch_refspec = &remote->fetch;
c5558f80 551
65d96c8b
BW
552 for (i = 0; i < fetch_refspec->nr; i++)
553 get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
e4cffacc 554 } else if (refmap.nr) {
c5558f80 555 die("--refmap option is only meaningful with command-line refspec(s).");
b888d61c
DB
556 } else {
557 /* Use the defaults */
85682c19
SP
558 struct branch *branch = branch_get(NULL);
559 int has_merge = branch_has_merge_config(branch);
3ee1757b 560 if (remote &&
e5349abf 561 (remote->fetch.nr ||
f31dbdc7 562 /* Note: has_merge implies non-NULL branch->remote_name */
3ee1757b 563 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
e5349abf
BW
564 for (i = 0; i < remote->fetch.nr; i++) {
565 get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
566 if (remote->fetch.items[i].dst &&
567 remote->fetch.items[i].dst[0])
b888d61c 568 *autotags = 1;
85682c19 569 if (!i && !has_merge && ref_map &&
e5349abf 570 !remote->fetch.items[0].pattern)
900f2814 571 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
b888d61c 572 }
da0204df
JS
573 /*
574 * if the remote we're fetching from is the same
575 * as given in branch.<name>.remote, we add the
576 * ref given in branch.<name>.merge, too.
f31dbdc7
BC
577 *
578 * Note: has_merge implies non-NULL branch->remote_name
da0204df 579 */
9ad7c5ae
JH
580 if (has_merge &&
581 !strcmp(branch->remote_name, remote->name))
85682c19 582 add_merge_config(&ref_map, remote_refs, branch, &tail);
2e03115d 583 } else if (!prefetch) {
b888d61c 584 ref_map = get_remote_ref(remote_refs, "HEAD");
9ad7c5ae 585 if (!ref_map)
bd4a51fc 586 die(_("Couldn't find remote ref HEAD"));
900f2814 587 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
5aaf7f2a 588 tail = &ref_map->next;
b888d61c
DB
589 }
590 }
0281c930 591
c5a84e92
MH
592 if (tags == TAGS_SET)
593 /* also fetch all tags */
594 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
595 else if (tags == TAGS_DEFAULT && *autotags)
6d1700d5 596 find_non_local_tags(remote_refs, &ref_map, &tail);
0281c930 597
c5a84e92
MH
598 /* Now append any refs to be updated opportunistically: */
599 *tail = orefs;
600 for (rm = orefs; rm; rm = rm->next) {
601 rm->fetch_head_status = FETCH_HEAD_IGNORE;
602 tail = &rm->next;
603 }
604
c0192df6
JK
605 /*
606 * apply negative refspecs first, before we remove duplicates. This is
607 * necessary as negative refspecs might remove an otherwise conflicting
608 * duplicate.
609 */
610 if (rs->nr)
611 ref_map = apply_negative_refspecs(ref_map, rs);
612 else
613 ref_map = apply_negative_refspecs(ref_map, &remote->fetch);
614
14b8ced3
BW
615 ref_map = ref_remove_duplicates(ref_map);
616
14b8ced3
BW
617 for (rm = ref_map; rm; rm = rm->next) {
618 if (rm->peer_ref) {
e198b3a7
JH
619 const char *refname = rm->peer_ref->name;
620 struct refname_hash_entry *peer_item;
f23a4651 621 unsigned int hash = strhash(refname);
e198b3a7 622
abcb7eeb
JT
623 if (!existing_refs_populated) {
624 refname_hash_init(&existing_refs);
625 for_each_ref(add_one_refname, &existing_refs);
626 existing_refs_populated = 1;
627 }
628
f23a4651
EW
629 peer_item = hashmap_get_entry_from_hash(&existing_refs,
630 hash, refname,
631 struct refname_hash_entry, ent);
14b8ced3 632 if (peer_item) {
e198b3a7 633 struct object_id *old_oid = &peer_item->oid;
14b8ced3
BW
634 oidcpy(&rm->peer_ref->old_oid, old_oid);
635 }
636 }
637 }
abcb7eeb 638 if (existing_refs_populated)
6da1a258 639 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
14b8ced3
BW
640
641 return ref_map;
b888d61c
DB
642}
643
fa250759
JK
644#define STORE_REF_ERROR_OTHER 1
645#define STORE_REF_ERROR_DF_CONFLICT 2
646
b888d61c
DB
647static int s_update_ref(const char *action,
648 struct ref *ref,
d4c8db8f 649 struct ref_transaction *transaction,
b888d61c
DB
650 int check_old)
651{
1412f762 652 char *msg;
b888d61c 653 char *rla = getenv("GIT_REFLOG_ACTION");
d4c8db8f 654 struct ref_transaction *our_transaction = NULL;
cd94f765 655 struct strbuf err = STRBUF_INIT;
c45889f1 656 int ret;
b888d61c 657
28a15401
JS
658 if (dry_run)
659 return 0;
b888d61c 660 if (!rla)
2d324efa 661 rla = default_rla.buf;
1412f762 662 msg = xstrfmt("%s: %s", rla, action);
cd94f765 663
d4c8db8f
PS
664 /*
665 * If no transaction was passed to us, we manage the transaction
666 * ourselves. Otherwise, we trust the caller to handle the transaction
667 * lifecycle.
668 */
c45889f1 669 if (!transaction) {
d4c8db8f
PS
670 transaction = our_transaction = ref_transaction_begin(&err);
671 if (!transaction) {
672 ret = STORE_REF_ERROR_OTHER;
673 goto out;
674 }
c45889f1
PS
675 }
676
677 ret = ref_transaction_update(transaction, ref->name, &ref->new_oid,
678 check_old ? &ref->old_oid : NULL,
679 0, msg, &err);
cd94f765 680 if (ret) {
c45889f1
PS
681 ret = STORE_REF_ERROR_OTHER;
682 goto out;
cd94f765
RS
683 }
684
d4c8db8f
PS
685 if (our_transaction) {
686 switch (ref_transaction_commit(our_transaction, &err)) {
687 case 0:
688 break;
689 case TRANSACTION_NAME_CONFLICT:
690 ret = STORE_REF_ERROR_DF_CONFLICT;
691 goto out;
692 default:
693 ret = STORE_REF_ERROR_OTHER;
694 goto out;
695 }
c45889f1
PS
696 }
697
698out:
d4c8db8f 699 ref_transaction_free(our_transaction);
c45889f1
PS
700 if (ret)
701 error("%s", err.buf);
cd94f765 702 strbuf_release(&err);
1412f762 703 free(msg);
c45889f1 704 return ret;
b888d61c
DB
705}
706
6bc91f23 707static int refcol_width = 10;
bc437d10 708static int compact_format;
6bc91f23
NTND
709
710static void adjust_refcol_width(const struct ref *ref)
711{
712 int max, rlen, llen, len;
713
714 /* uptodate lines are only shown on high verbosity level */
4a7e27e9 715 if (!verbosity && oideq(&ref->peer_ref->old_oid, &ref->old_oid))
6bc91f23
NTND
716 return;
717
718 max = term_columns();
719 rlen = utf8_strwidth(prettify_refname(ref->name));
bc437d10 720
6bc91f23
NTND
721 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
722
723 /*
724 * rough estimation to see if the output line is too long and
725 * should not be counted (we can't do precise calculation
726 * anyway because we don't know if the error explanation part
727 * will be printed in update_local_ref)
728 */
bc437d10
NTND
729 if (compact_format) {
730 llen = 0;
731 max = max * 2 / 3;
732 }
6bc91f23
NTND
733 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
734 if (len >= max)
735 return;
736
bc437d10
NTND
737 /*
738 * Not precise calculation for compact mode because '*' can
739 * appear on the left hand side of '->' and shrink the column
740 * back.
741 */
6bc91f23
NTND
742 if (refcol_width < rlen)
743 refcol_width = rlen;
744}
745
746static void prepare_format_display(struct ref *ref_map)
747{
748 struct ref *rm;
bc437d10
NTND
749 const char *format = "full";
750
f1de981e 751 git_config_get_string_tmp("fetch.output", &format);
bc437d10
NTND
752 if (!strcasecmp(format, "full"))
753 compact_format = 0;
754 else if (!strcasecmp(format, "compact"))
755 compact_format = 1;
756 else
757 die(_("configuration fetch.output contains invalid value %s"),
758 format);
6bc91f23
NTND
759
760 for (rm = ref_map; rm; rm = rm->next) {
761 if (rm->status == REF_STATUS_REJECT_SHALLOW ||
762 !rm->peer_ref ||
763 !strcmp(rm->name, "HEAD"))
764 continue;
765
766 adjust_refcol_width(rm);
767 }
768}
165f3902 769
bc437d10
NTND
770static void print_remote_to_local(struct strbuf *display,
771 const char *remote, const char *local)
772{
773 strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
774}
775
776static int find_and_replace(struct strbuf *haystack,
777 const char *needle,
778 const char *placeholder)
779{
dc40b24d 780 const char *p = NULL;
bc437d10
NTND
781 int plen, nlen;
782
dc40b24d
NTND
783 nlen = strlen(needle);
784 if (ends_with(haystack->buf, needle))
785 p = haystack->buf + haystack->len - nlen;
786 else
787 p = strstr(haystack->buf, needle);
bc437d10
NTND
788 if (!p)
789 return 0;
790
791 if (p > haystack->buf && p[-1] != '/')
792 return 0;
793
794 plen = strlen(p);
bc437d10
NTND
795 if (plen > nlen && p[nlen] != '/')
796 return 0;
797
798 strbuf_splice(haystack, p - haystack->buf, nlen,
799 placeholder, strlen(placeholder));
800 return 1;
801}
802
803static void print_compact(struct strbuf *display,
804 const char *remote, const char *local)
805{
806 struct strbuf r = STRBUF_INIT;
807 struct strbuf l = STRBUF_INIT;
808
809 if (!strcmp(remote, local)) {
810 strbuf_addf(display, "%-*s -> *", refcol_width, remote);
811 return;
812 }
813
814 strbuf_addstr(&r, remote);
815 strbuf_addstr(&l, local);
816
817 if (!find_and_replace(&r, local, "*"))
818 find_and_replace(&l, remote, "*");
819 print_remote_to_local(display, r.buf, l.buf);
820
821 strbuf_release(&r);
822 strbuf_release(&l);
823}
824
d0b39a03
NTND
825static void format_display(struct strbuf *display, char code,
826 const char *summary, const char *error,
901f3d40
JH
827 const char *remote, const char *local,
828 int summary_width)
d0b39a03 829{
901f3d40
JH
830 int width = (summary_width + strlen(summary) - gettext_width(summary));
831
832 strbuf_addf(display, "%c %-*s ", code, width, summary);
bc437d10
NTND
833 if (!compact_format)
834 print_remote_to_local(display, remote, local);
835 else
836 print_compact(display, remote, local);
d0b39a03
NTND
837 if (error)
838 strbuf_addf(display, " (%s)", error);
839}
165f3902 840
b888d61c 841static int update_local_ref(struct ref *ref,
d4c8db8f 842 struct ref_transaction *transaction,
165f3902 843 const char *remote,
6da618d5 844 const struct ref *remote_ref,
901f3d40
JH
845 struct strbuf *display,
846 int summary_width)
b888d61c 847{
b888d61c 848 struct commit *current = NULL, *updated;
b888d61c 849 struct branch *current_branch = branch_get(NULL);
4577e483 850 const char *pretty_ref = prettify_refname(ref->name);
377444b4 851 int fast_forward = 0;
b888d61c 852
47c61004 853 if (!repo_has_object_file(the_repository, &ref->new_oid))
f4e54d02 854 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
b888d61c 855
4a7e27e9 856 if (oideq(&ref->old_oid, &ref->new_oid)) {
7f87aff2 857 if (verbosity > 0)
d0b39a03 858 format_display(display, '=', _("[up to date]"), NULL,
901f3d40 859 remote, pretty_ref, summary_width);
b888d61c
DB
860 return 0;
861 }
862
b3abdd9d
SP
863 if (current_branch &&
864 !strcmp(ref->name, current_branch->name) &&
b888d61c 865 !(update_head_ok || is_bare_repository()) &&
f4e54d02 866 !is_null_oid(&ref->old_oid)) {
b888d61c
DB
867 /*
868 * If this is the head, and it's not okay to update
869 * the head, and the old value of the head isn't empty...
870 */
d0b39a03
NTND
871 format_display(display, '!', _("[rejected]"),
872 _("can't fetch in current branch"),
901f3d40 873 remote, pretty_ref, summary_width);
b888d61c
DB
874 return 1;
875 }
876
f4e54d02 877 if (!is_null_oid(&ref->old_oid) &&
59556548 878 starts_with(ref->name, "refs/tags/")) {
0bc8d71b
ÆAB
879 if (force || ref->force) {
880 int r;
d4c8db8f 881 r = s_update_ref("updating tag", ref, transaction, 0);
0bc8d71b
ÆAB
882 format_display(display, r ? '!' : 't', _("[tag update]"),
883 r ? _("unable to update local ref") : NULL,
884 remote, pretty_ref, summary_width);
885 return r;
886 } else {
887 format_display(display, '!', _("[rejected]"), _("would clobber existing tag"),
888 remote, pretty_ref, summary_width);
889 return 1;
890 }
b888d61c
DB
891 }
892
21e1ee8f
SB
893 current = lookup_commit_reference_gently(the_repository,
894 &ref->old_oid, 1);
895 updated = lookup_commit_reference_gently(the_repository,
896 &ref->new_oid, 1);
b888d61c 897 if (!current || !updated) {
165f3902
NP
898 const char *msg;
899 const char *what;
6315472e 900 int r;
0997adaa
MB
901 /*
902 * Nicely describe the new ref we're fetching.
903 * Base this on the remote's ref name, as it's
904 * more likely to follow a standard layout.
905 */
906 const char *name = remote_ref ? remote_ref->name : "";
59556548 907 if (starts_with(name, "refs/tags/")) {
b888d61c 908 msg = "storing tag";
f7b3742a 909 what = _("[new tag]");
59556548 910 } else if (starts_with(name, "refs/heads/")) {
b888d61c 911 msg = "storing head";
f7b3742a 912 what = _("[new branch]");
0997adaa
MB
913 } else {
914 msg = "storing ref";
915 what = _("[new ref]");
165f3902
NP
916 }
917
d4c8db8f 918 r = s_update_ref(msg, ref, transaction, 0);
d0b39a03
NTND
919 format_display(display, r ? '!' : '*', what,
920 r ? _("unable to update local ref") : NULL,
901f3d40 921 remote, pretty_ref, summary_width);
6315472e 922 return r;
b888d61c
DB
923 }
924
377444b4
DS
925 if (fetch_show_forced_updates) {
926 uint64_t t_before = getnanotime();
927 fast_forward = in_merge_bases(current, updated);
928 forced_updates_ms += (getnanotime() - t_before) / 1000000;
929 } else {
930 fast_forward = 1;
931 }
932
933 if (fast_forward) {
bd22d4ff 934 struct strbuf quickref = STRBUF_INIT;
6315472e 935 int r;
cdbd70c4 936
30e677e0 937 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
bd22d4ff 938 strbuf_addstr(&quickref, "..");
30e677e0 939 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
d4c8db8f 940 r = s_update_ref("fast-forward", ref, transaction, 1);
d0b39a03
NTND
941 format_display(display, r ? '!' : ' ', quickref.buf,
942 r ? _("unable to update local ref") : NULL,
901f3d40 943 remote, pretty_ref, summary_width);
bd22d4ff 944 strbuf_release(&quickref);
6315472e 945 return r;
165f3902 946 } else if (force || ref->force) {
bd22d4ff 947 struct strbuf quickref = STRBUF_INIT;
6315472e 948 int r;
30e677e0 949 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
bd22d4ff 950 strbuf_addstr(&quickref, "...");
30e677e0 951 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
d4c8db8f 952 r = s_update_ref("forced-update", ref, transaction, 1);
d0b39a03
NTND
953 format_display(display, r ? '!' : '+', quickref.buf,
954 r ? _("unable to update local ref") : _("forced update"),
901f3d40 955 remote, pretty_ref, summary_width);
bd22d4ff 956 strbuf_release(&quickref);
6315472e 957 return r;
165f3902 958 } else {
d0b39a03 959 format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
901f3d40 960 remote, pretty_ref, summary_width);
b888d61c
DB
961 return 1;
962 }
b888d61c
DB
963}
964
9fec7b21 965static const struct object_id *iterate_ref_map(void *cb_data)
6b67e0dc 966{
f0e278b1
JH
967 struct ref **rm = cb_data;
968 struct ref *ref = *rm;
6b67e0dc 969
4820a33b
NTND
970 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
971 ref = ref->next;
f0e278b1 972 if (!ref)
9fec7b21 973 return NULL;
f0e278b1 974 *rm = ref->next;
9fec7b21 975 return &ref->old_oid;
6b67e0dc
JH
976}
977
58a646a3
PS
978struct fetch_head {
979 FILE *fp;
929d0445 980 struct strbuf buf;
58a646a3
PS
981};
982
983static int open_fetch_head(struct fetch_head *fetch_head)
984{
985 const char *filename = git_path_fetch_head(the_repository);
986
987 if (write_fetch_head) {
988 fetch_head->fp = fopen(filename, "a");
989 if (!fetch_head->fp)
990 return error_errno(_("cannot open %s"), filename);
929d0445 991 strbuf_init(&fetch_head->buf, 0);
58a646a3
PS
992 } else {
993 fetch_head->fp = NULL;
994 }
995
996 return 0;
997}
998
999static void append_fetch_head(struct fetch_head *fetch_head,
1000 const struct object_id *old_oid,
1001 enum fetch_head_status fetch_head_status,
1002 const char *note,
1003 const char *url, size_t url_len)
1004{
1005 char old_oid_hex[GIT_MAX_HEXSZ + 1];
1006 const char *merge_status_marker;
1007 size_t i;
1008
1009 if (!fetch_head->fp)
1010 return;
1011
1012 switch (fetch_head_status) {
1013 case FETCH_HEAD_NOT_FOR_MERGE:
1014 merge_status_marker = "not-for-merge";
1015 break;
1016 case FETCH_HEAD_MERGE:
1017 merge_status_marker = "";
1018 break;
1019 default:
1020 /* do not write anything to FETCH_HEAD */
1021 return;
1022 }
1023
929d0445
PS
1024 strbuf_addf(&fetch_head->buf, "%s\t%s\t%s",
1025 oid_to_hex_r(old_oid_hex, old_oid), merge_status_marker, note);
58a646a3
PS
1026 for (i = 0; i < url_len; ++i)
1027 if ('\n' == url[i])
929d0445 1028 strbuf_addstr(&fetch_head->buf, "\\n");
58a646a3 1029 else
929d0445
PS
1030 strbuf_addch(&fetch_head->buf, url[i]);
1031 strbuf_addch(&fetch_head->buf, '\n');
1032
c7b190da
PS
1033 /*
1034 * When using an atomic fetch, we do not want to update FETCH_HEAD if
1035 * any of the reference updates fails. We thus have to write all
1036 * updates to a buffer first and only commit it as soon as all
1037 * references have been successfully updated.
1038 */
1039 if (!atomic_fetch) {
1040 strbuf_write(&fetch_head->buf, fetch_head->fp);
1041 strbuf_reset(&fetch_head->buf);
1042 }
58a646a3
PS
1043}
1044
1045static void commit_fetch_head(struct fetch_head *fetch_head)
1046{
c7b190da
PS
1047 if (!fetch_head->fp || !atomic_fetch)
1048 return;
1049 strbuf_write(&fetch_head->buf, fetch_head->fp);
58a646a3
PS
1050}
1051
1052static void close_fetch_head(struct fetch_head *fetch_head)
1053{
1054 if (!fetch_head->fp)
1055 return;
1056
1057 fclose(fetch_head->fp);
929d0445 1058 strbuf_release(&fetch_head->buf);
58a646a3
PS
1059}
1060
182f59da
JNA
1061static const char warn_show_forced_updates[] =
1062N_("Fetch normally indicates which branches had a forced update,\n"
1063 "but that check has been disabled. To re-enable, use '--show-forced-updates'\n"
1064 "flag or run 'git config fetch.showForcedUpdates true'.");
1065static const char warn_time_show_forced_updates[] =
1066N_("It took %.2f seconds to check forced updates. You can use\n"
1067 "'--no-show-forced-updates' or run 'git config fetch.showForcedUpdates false'\n"
1068 " to avoid this check.\n");
1069
47abd85b 1070static int store_updated_refs(const char *raw_url, const char *remote_name,
cf1e7c07 1071 int connectivity_checked, struct ref *ref_map)
b888d61c 1072{
58a646a3 1073 struct fetch_head fetch_head;
4b3b33a7 1074 int url_len, i, rc = 0;
c7b190da
PS
1075 struct strbuf note = STRBUF_INIT, err = STRBUF_INIT;
1076 struct ref_transaction *transaction = NULL;
b888d61c
DB
1077 const char *what, *kind;
1078 struct ref *rm;
dcf69262 1079 char *url;
900f2814 1080 int want_status;
11fd66de 1081 int summary_width = transport_summary_width(ref_map);
b888d61c 1082
58a646a3
PS
1083 rc = open_fetch_head(&fetch_head);
1084 if (rc)
1085 return -1;
47abd85b 1086
fb0cc87e
DB
1087 if (raw_url)
1088 url = transport_anonymize_url(raw_url);
1089 else
1090 url = xstrdup("foreign");
6b67e0dc 1091
cf1e7c07 1092 if (!connectivity_checked) {
2df1aa23
JT
1093 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1094
cf1e7c07 1095 rm = ref_map;
2df1aa23 1096 if (check_connected(iterate_ref_map, &rm, &opt)) {
cf1e7c07
JT
1097 rc = error(_("%s did not send all necessary objects\n"), url);
1098 goto abort;
1099 }
9516a598 1100 }
6b67e0dc 1101
c7b190da
PS
1102 if (atomic_fetch) {
1103 transaction = ref_transaction_begin(&err);
1104 if (!transaction) {
1105 error("%s", err.buf);
1106 goto abort;
1107 }
1108 }
1109
6bc91f23
NTND
1110 prepare_format_display(ref_map);
1111
96890f4c 1112 /*
900f2814
JK
1113 * We do a pass for each fetch_head_status type in their enum order, so
1114 * merged entries are written before not-for-merge. That lets readers
1115 * use FETCH_HEAD as a refname to refer to the ref to be merged.
96890f4c 1116 */
900f2814
JK
1117 for (want_status = FETCH_HEAD_MERGE;
1118 want_status <= FETCH_HEAD_IGNORE;
1119 want_status++) {
96890f4c 1120 for (rm = ref_map; rm; rm = rm->next) {
fe7df03a 1121 struct commit *commit = NULL;
96890f4c
JH
1122 struct ref *ref = NULL;
1123
4820a33b
NTND
1124 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
1125 if (want_status == FETCH_HEAD_MERGE)
09667e95 1126 warning(_("rejected %s because shallow roots are not allowed to be updated"),
4820a33b
NTND
1127 rm->peer_ref ? rm->peer_ref->name : rm->name);
1128 continue;
1129 }
1130
fe7df03a
PS
1131 /*
1132 * References in "refs/tags/" are often going to point
1133 * to annotated tags, which are not part of the
1134 * commit-graph. We thus only try to look up refs in
1135 * the graph which are not in that namespace to not
1136 * regress performance in repositories with many
1137 * annotated tags.
1138 */
1139 if (!starts_with(rm->name, "refs/tags/"))
1140 commit = lookup_commit_in_graph(the_repository, &rm->old_oid);
1141 if (!commit) {
1142 commit = lookup_commit_reference_gently(the_repository,
1143 &rm->old_oid,
1144 1);
1145 if (!commit)
1146 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
1147 }
96890f4c 1148
900f2814 1149 if (rm->fetch_head_status != want_status)
96890f4c
JH
1150 continue;
1151
1152 if (rm->peer_ref) {
6f687c21 1153 ref = alloc_ref(rm->peer_ref->name);
f4e54d02 1154 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
1155 oidcpy(&ref->new_oid, &rm->old_oid);
96890f4c
JH
1156 ref->force = rm->peer_ref->force;
1157 }
b888d61c 1158
7ea0c2f4
OS
1159 if (recurse_submodules != RECURSE_SUBMODULES_OFF &&
1160 (!rm->peer_ref || !oideq(&ref->old_oid, &ref->new_oid))) {
be76c212 1161 check_for_new_submodule_commits(&rm->old_oid);
7ea0c2f4 1162 }
b888d61c 1163
96890f4c
JH
1164 if (!strcmp(rm->name, "HEAD")) {
1165 kind = "";
1166 what = "";
1167 }
a6293f5d 1168 else if (skip_prefix(rm->name, "refs/heads/", &what))
96890f4c 1169 kind = "branch";
a6293f5d 1170 else if (skip_prefix(rm->name, "refs/tags/", &what))
96890f4c 1171 kind = "tag";
a6293f5d 1172 else if (skip_prefix(rm->name, "refs/remotes/", &what))
96890f4c 1173 kind = "remote-tracking branch";
96890f4c
JH
1174 else {
1175 kind = "";
1176 what = rm->name;
1177 }
b888d61c 1178
96890f4c
JH
1179 url_len = strlen(url);
1180 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1181 ;
1182 url_len = i + 1;
1183 if (4 < i && !strncmp(".git", url + i - 3, 4))
1184 url_len = i - 3;
1185
1186 strbuf_reset(&note);
1187 if (*what) {
1188 if (*kind)
1189 strbuf_addf(&note, "%s ", kind);
1190 strbuf_addf(&note, "'%s' of ", what);
1191 }
58a646a3
PS
1192
1193 append_fetch_head(&fetch_head, &rm->old_oid,
1194 rm->fetch_head_status,
1195 note.buf, url, url_len);
96890f4c
JH
1196
1197 strbuf_reset(&note);
1198 if (ref) {
c7b190da 1199 rc |= update_local_ref(ref, transaction, what,
d4c8db8f 1200 rm, &note, summary_width);
96890f4c 1201 free(ref);
db3c293e
JT
1202 } else if (write_fetch_head || dry_run) {
1203 /*
1204 * Display fetches written to FETCH_HEAD (or
1205 * would be written to FETCH_HEAD, if --dry-run
1206 * is set).
1207 */
d0b39a03
NTND
1208 format_display(&note, '*',
1209 *kind ? kind : "branch", NULL,
1210 *what ? what : "HEAD",
901f3d40 1211 "FETCH_HEAD", summary_width);
db3c293e 1212 }
96890f4c
JH
1213 if (note.len) {
1214 if (verbosity >= 0 && !shown_url) {
1215 fprintf(stderr, _("From %.*s\n"),
1216 url_len, url);
1217 shown_url = 1;
1218 }
1219 if (verbosity >= 0)
1220 fprintf(stderr, " %s\n", note.buf);
165f3902
NP
1221 }
1222 }
b888d61c 1223 }
9516a598 1224
c7b190da
PS
1225 if (!rc && transaction) {
1226 rc = ref_transaction_commit(transaction, &err);
1227 if (rc) {
1228 error("%s", err.buf);
1229 goto abort;
1230 }
1231 }
1232
58a646a3
PS
1233 if (!rc)
1234 commit_fetch_head(&fetch_head);
1235
fa250759 1236 if (rc & STORE_REF_ERROR_DF_CONFLICT)
bd4a51fc 1237 error(_("some local refs could not be updated; try running\n"
f3cb169b 1238 " 'git remote prune %s' to remove any old, conflicting "
bd4a51fc 1239 "branches"), remote_name);
9516a598 1240
377444b4
DS
1241 if (advice_fetch_show_forced_updates) {
1242 if (!fetch_show_forced_updates) {
182f59da 1243 warning(_(warn_show_forced_updates));
377444b4 1244 } else if (forced_updates_ms > FORCED_UPDATES_DELAY_WARNING_IN_MS) {
182f59da 1245 warning(_(warn_time_show_forced_updates),
377444b4 1246 forced_updates_ms / 1000.0);
377444b4
DS
1247 }
1248 }
1249
9516a598 1250 abort:
5914f2d0 1251 strbuf_release(&note);
c7b190da
PS
1252 strbuf_release(&err);
1253 ref_transaction_free(transaction);
9516a598 1254 free(url);
58a646a3 1255 close_fetch_head(&fetch_head);
efb98b44 1256 return rc;
b888d61c
DB
1257}
1258
4191c356
SP
1259/*
1260 * We would want to bypass the object transfer altogether if
d9eb0205 1261 * everything we are going to fetch already exists and is connected
4191c356 1262 * locally.
4191c356 1263 */
35f9e3e5 1264static int check_exist_and_connected(struct ref *ref_map)
4191c356 1265{
f0e278b1 1266 struct ref *rm = ref_map;
7043c707 1267 struct check_connected_options opt = CHECK_CONNECTED_INIT;
35f9e3e5 1268 struct ref *r;
f0e278b1 1269
4191c356
SP
1270 /*
1271 * If we are deepening a shallow clone we already have these
1272 * objects reachable. Running rev-list here will return with
1273 * a good (0) exit status and we'll bypass the fetch that we
1274 * really need to perform. Claiming failure now will ensure
1275 * we perform the network exchange to deepen our history.
1276 */
508ea882 1277 if (deepen)
4191c356 1278 return -1;
35f9e3e5
JT
1279
1280 /*
1281 * check_connected() allows objects to merely be promised, but
1282 * we need all direct targets to exist.
1283 */
1284 for (r = rm; r; r = r->next) {
6462d5eb
JT
1285 if (!has_object_file_with_flags(&r->old_oid,
1286 OBJECT_INFO_SKIP_FETCH_OBJECT))
35f9e3e5
JT
1287 return -1;
1288 }
1289
7043c707
JK
1290 opt.quiet = 1;
1291 return check_connected(iterate_ref_map, &rm, &opt);
4191c356
SP
1292}
1293
1c7d1ab6 1294static int fetch_and_consume_refs(struct transport *transport, struct ref *ref_map)
b888d61c 1295{
1c7d1ab6 1296 int connectivity_checked;
284b2ce8
PS
1297 int ret;
1298
1299 /*
1300 * We don't need to perform a fetch in case we can already satisfy all
1301 * refs.
1302 */
1303 ret = check_exist_and_connected(ref_map);
5fc31180
JS
1304 if (ret) {
1305 trace2_region_enter("fetch", "fetch_refs", the_repository);
e2842b39 1306 ret = transport_fetch_refs(transport, ref_map);
5fc31180 1307 trace2_region_leave("fetch", "fetch_refs", the_repository);
284b2ce8
PS
1308 if (ret)
1309 goto out;
5fc31180 1310 }
284b2ce8 1311
1c7d1ab6 1312 connectivity_checked = transport->smart_options
cf1e7c07 1313 ? transport->smart_options->connectivity_checked : 0;
1c7d1ab6 1314
5fc31180
JS
1315 trace2_region_enter("fetch", "consume_refs", the_repository);
1316 ret = store_updated_refs(transport->url,
1317 transport->remote->name,
1318 connectivity_checked,
1319 ref_map);
5fc31180 1320 trace2_region_leave("fetch", "consume_refs", the_repository);
1c7d1ab6
PS
1321
1322out:
1323 transport_unlock_pack(transport);
b888d61c
DB
1324 return ret;
1325}
1326
def11e71
BW
1327static int prune_refs(struct refspec *rs, struct ref *ref_map,
1328 const char *raw_url)
f360d844 1329{
4b3b33a7 1330 int url_len, i, result = 0;
a2ac50cb 1331 struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
4b3b33a7 1332 char *url;
11fd66de 1333 int summary_width = transport_summary_width(stale_refs);
f360d844 1334 const char *dangling_msg = dry_run
18986d53
NTND
1335 ? _(" (%s will become dangling)")
1336 : _(" (%s has become dangling)");
f360d844 1337
4b3b33a7
TM
1338 if (raw_url)
1339 url = transport_anonymize_url(raw_url);
1340 else
1341 url = xstrdup("foreign");
1342
1343 url_len = strlen(url);
1344 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1345 ;
1346
1347 url_len = i + 1;
1348 if (4 < i && !strncmp(".git", url + i - 3, 4))
1349 url_len = i - 3;
1350
a087b432
MH
1351 if (!dry_run) {
1352 struct string_list refnames = STRING_LIST_INIT_NODUP;
1353
1354 for (ref = stale_refs; ref; ref = ref->next)
1355 string_list_append(&refnames, ref->name);
1356
64da4199 1357 result = delete_refs("fetch: prune", &refnames, 0);
a087b432
MH
1358 string_list_clear(&refnames, 0);
1359 }
1360
1361 if (verbosity >= 0) {
1362 for (ref = stale_refs; ref; ref = ref->next) {
d0b39a03 1363 struct strbuf sb = STRBUF_INIT;
a087b432
MH
1364 if (!shown_url) {
1365 fprintf(stderr, _("From %.*s\n"), url_len, url);
1366 shown_url = 1;
1367 }
2cb040ba 1368 format_display(&sb, '-', _("[deleted]"), NULL,
901f3d40
JH
1369 _("(none)"), prettify_refname(ref->name),
1370 summary_width);
d0b39a03
NTND
1371 fprintf(stderr, " %s\n",sb.buf);
1372 strbuf_release(&sb);
f360d844
JS
1373 warn_dangling_symref(stderr, dangling_msg, ref->name);
1374 }
1375 }
a087b432 1376
4b3b33a7 1377 free(url);
f360d844
JS
1378 free_refs(stale_refs);
1379 return result;
1380}
1381
8ee5d731
JS
1382static void check_not_current_branch(struct ref *ref_map)
1383{
1384 struct branch *current_branch = branch_get(NULL);
1385
1386 if (is_bare_repository() || !current_branch)
1387 return;
1388
1389 for (; ref_map; ref_map = ref_map->next)
1390 if (ref_map->peer_ref && !strcmp(current_branch->refname,
1391 ref_map->peer_ref->name))
bd4a51fc
ÆAB
1392 die(_("Refusing to fetch into current branch %s "
1393 "of non-bare repository"), current_branch->refname);
8ee5d731
JS
1394}
1395
e6cc5104
JH
1396static int truncate_fetch_head(void)
1397{
102de880 1398 const char *filename = git_path_fetch_head(the_repository);
ea56518d 1399 FILE *fp = fopen_for_writing(filename);
e6cc5104
JH
1400
1401 if (!fp)
6da31d7f 1402 return error_errno(_("cannot open %s"), filename);
e6cc5104
JH
1403 fclose(fp);
1404 return 0;
1405}
1406
db5723c6
JH
1407static void set_option(struct transport *transport, const char *name, const char *value)
1408{
1409 int r = transport_set_option(transport, name, value);
1410 if (r < 0)
1411 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
1412 name, value, transport->url);
1413 if (r > 0)
1414 warning(_("Option \"%s\" is ignored for %s\n"),
1415 name, transport->url);
1416}
1417
3390e42a
JT
1418
1419static int add_oid(const char *refname, const struct object_id *oid, int flags,
1420 void *cb_data)
1421{
1422 struct oid_array *oids = cb_data;
1423
1424 oid_array_append(oids, oid);
1425 return 0;
1426}
1427
1428static void add_negotiation_tips(struct git_transport_options *smart_options)
1429{
1430 struct oid_array *oids = xcalloc(1, sizeof(*oids));
1431 int i;
1432
1433 for (i = 0; i < negotiation_tip.nr; i++) {
1434 const char *s = negotiation_tip.items[i].string;
1435 int old_nr;
1436 if (!has_glob_specials(s)) {
1437 struct object_id oid;
1438 if (get_oid(s, &oid))
82823118
JT
1439 die(_("%s is not a valid object"), s);
1440 if (!has_object(the_repository, &oid, 0))
1441 die(_("the object %s does not exist"), s);
3390e42a
JT
1442 oid_array_append(oids, &oid);
1443 continue;
1444 }
1445 old_nr = oids->nr;
1446 for_each_glob_ref(add_oid, s, oids);
1447 if (old_nr == oids->nr)
1448 warning("Ignoring --negotiation-tip=%s because it does not match any refs",
1449 s);
1450 }
1451 smart_options->negotiation_tips = oids;
1452}
1453
508ea882 1454static struct transport *prepare_transport(struct remote *remote, int deepen)
db5723c6
JH
1455{
1456 struct transport *transport;
87c2d9d3 1457
db5723c6
JH
1458 transport = transport_get(remote, NULL);
1459 transport_set_verbosity(transport, verbosity, progress);
c915f11e 1460 transport->family = family;
db5723c6
JH
1461 if (upload_pack)
1462 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1463 if (keep)
1464 set_option(transport, TRANS_OPT_KEEP, "yes");
1465 if (depth)
1466 set_option(transport, TRANS_OPT_DEPTH, depth);
508ea882
NTND
1467 if (deepen && deepen_since)
1468 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
a45a2600
NTND
1469 if (deepen && deepen_not.nr)
1470 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1471 (const char *)&deepen_not);
cccf74e2
NTND
1472 if (deepen_relative)
1473 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
48d25cae
NTND
1474 if (update_shallow)
1475 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
acb0c572 1476 if (filter_options.choice) {
cf9ceb5a
MD
1477 const char *spec =
1478 expand_list_objects_filter_spec(&filter_options);
1479 set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER, spec);
acb0c572
JH
1480 set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1481 }
3390e42a
JT
1482 if (negotiation_tip.nr) {
1483 if (transport->smart_options)
1484 add_negotiation_tips(transport->smart_options);
1485 else
1486 warning("Ignoring --negotiation-tip because the protocol does not support it.");
1487 }
db5723c6
JH
1488 return transport;
1489}
1490
069d5032
JH
1491static void backfill_tags(struct transport *transport, struct ref *ref_map)
1492{
508ea882
NTND
1493 int cannot_reuse;
1494
1495 /*
1496 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1497 * when remote helper is used (setting it to an empty string
1498 * is not unsetting). We could extend the remote helper
1499 * protocol for that, but for now, just force a new connection
a45a2600 1500 * without deepen-since. Similar story for deepen-not.
508ea882 1501 */
a45a2600
NTND
1502 cannot_reuse = transport->cannot_reuse ||
1503 deepen_since || deepen_not.nr;
508ea882
NTND
1504 if (cannot_reuse) {
1505 gsecondary = prepare_transport(transport->remote, 0);
b26ed430
JH
1506 transport = gsecondary;
1507 }
1508
069d5032
JH
1509 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1510 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
cccf74e2 1511 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1c7d1ab6 1512 fetch_and_consume_refs(transport, ref_map);
b26ed430
JH
1513
1514 if (gsecondary) {
1515 transport_disconnect(gsecondary);
1516 gsecondary = NULL;
1517 }
069d5032
JH
1518}
1519
b888d61c 1520static int do_fetch(struct transport *transport,
65a1301f 1521 struct refspec *rs)
b888d61c 1522{
7f98428d 1523 struct ref *ref_map;
b888d61c 1524 int autotags = (transport->remote->fetch_tags == 1);
5b87d8d3 1525 int retcode = 0;
6d1700d5 1526 const struct ref *remote_refs;
39835409
JT
1527 struct transport_ls_refs_options transport_ls_refs_options =
1528 TRANSPORT_LS_REFS_OPTIONS_INIT;
e70a3030 1529 int must_list_refs = 1;
b1a01e1c 1530
ed368546
DJ
1531 if (tags == TAGS_DEFAULT) {
1532 if (transport->remote->fetch_tags == 2)
1533 tags = TAGS_SET;
1534 if (transport->remote->fetch_tags == -1)
1535 tags = TAGS_UNSET;
1536 }
b888d61c 1537
b888d61c 1538 /* if not appending, truncate FETCH_HEAD */
887952b8 1539 if (!append && write_fetch_head) {
5b87d8d3
MH
1540 retcode = truncate_fetch_head();
1541 if (retcode)
1542 goto cleanup;
d6617c7c 1543 }
b888d61c 1544
e70a3030
JT
1545 if (rs->nr) {
1546 int i;
1547
39835409 1548 refspec_ref_prefixes(rs, &transport_ls_refs_options.ref_prefixes);
e70a3030
JT
1549
1550 /*
1551 * We can avoid listing refs if all of them are exact
1552 * OIDs
1553 */
1554 must_list_refs = 0;
1555 for (i = 0; i < rs->nr; i++) {
1556 if (!rs->items[i].exact_sha1) {
1557 must_list_refs = 1;
1558 break;
1559 }
1560 }
1561 } else if (transport->remote && transport->remote->fetch.nr)
39835409
JT
1562 refspec_ref_prefixes(&transport->remote->fetch,
1563 &transport_ls_refs_options.ref_prefixes);
b888d61c 1564
e70a3030
JT
1565 if (tags == TAGS_SET || tags == TAGS_DEFAULT) {
1566 must_list_refs = 1;
39835409
JT
1567 if (transport_ls_refs_options.ref_prefixes.nr)
1568 strvec_push(&transport_ls_refs_options.ref_prefixes,
1569 "refs/tags/");
b888d61c
DB
1570 }
1571
5fc31180
JS
1572 if (must_list_refs) {
1573 trace2_region_enter("fetch", "remote_refs", the_repository);
39835409
JT
1574 remote_refs = transport_get_remote_refs(transport,
1575 &transport_ls_refs_options);
5fc31180
JS
1576 trace2_region_leave("fetch", "remote_refs", the_repository);
1577 } else
e70a3030
JT
1578 remote_refs = NULL;
1579
39835409 1580 strvec_clear(&transport_ls_refs_options.ref_prefixes);
6d1700d5
BW
1581
1582 ref_map = get_ref_map(transport->remote, remote_refs, rs,
1583 tags, &autotags);
8ee5d731
JS
1584 if (!update_head_ok)
1585 check_not_current_branch(ref_map);
b888d61c 1586
41fa7d2e
SP
1587 if (tags == TAGS_DEFAULT && autotags)
1588 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
ed43de6e 1589 if (prune) {
0838bf47
MH
1590 /*
1591 * We only prune based on refspecs specified
1592 * explicitly (via command line or configuration); we
1593 * don't care whether --tags was specified.
1594 */
65a1301f 1595 if (rs->nr) {
def11e71 1596 prune_refs(rs, ref_map, transport->url);
e8c1e6c7 1597 } else {
def11e71 1598 prune_refs(&transport->remote->fetch,
4b3b33a7
TM
1599 ref_map,
1600 transport->url);
e8c1e6c7 1601 }
ed43de6e 1602 }
1c7d1ab6 1603 if (fetch_and_consume_refs(transport, ref_map)) {
10a6cc88
TM
1604 free_refs(ref_map);
1605 retcode = 1;
1606 goto cleanup;
1607 }
24bc1a12
CB
1608
1609 if (set_upstream) {
1610 struct branch *branch = branch_get("HEAD");
1611 struct ref *rm;
1612 struct ref *source_ref = NULL;
1613
1614 /*
1615 * We're setting the upstream configuration for the
15beaaa3 1616 * current branch. The relevant upstream is the
24bc1a12
CB
1617 * fetched branch that is meant to be merged with the
1618 * current one, i.e. the one fetched to FETCH_HEAD.
1619 *
1620 * When there are several such branches, consider the
1621 * request ambiguous and err on the safe side by doing
1622 * nothing and just emit a warning.
1623 */
1624 for (rm = ref_map; rm; rm = rm->next) {
1625 if (!rm->peer_ref) {
1626 if (source_ref) {
391c7e40 1627 warning(_("multiple branches detected, incompatible with --set-upstream"));
24bc1a12
CB
1628 goto skip;
1629 } else {
1630 source_ref = rm;
1631 }
1632 }
1633 }
1634 if (source_ref) {
1635 if (!strcmp(source_ref->name, "HEAD") ||
1636 starts_with(source_ref->name, "refs/heads/"))
1637 install_branch_config(0,
1638 branch->name,
1639 transport->remote->name,
1640 source_ref->name);
1641 else if (starts_with(source_ref->name, "refs/remotes/"))
1642 warning(_("not setting upstream for a remote remote-tracking branch"));
1643 else if (starts_with(source_ref->name, "refs/tags/"))
1644 warning(_("not setting upstream for a remote tag"));
1645 else
1646 warning(_("unknown branch type"));
1647 } else {
1648 warning(_("no source branch found.\n"
1649 "you need to specify exactly one branch with the --set-upstream option."));
1650 }
1651 }
1652 skip:
7f98428d 1653 free_refs(ref_map);
b888d61c
DB
1654
1655 /* if neither --no-tags nor --tags was specified, do automated tag
1656 * following ... */
83201998 1657 if (tags == TAGS_DEFAULT && autotags) {
c50b2b47
SP
1658 struct ref **tail = &ref_map;
1659 ref_map = NULL;
6d1700d5 1660 find_non_local_tags(remote_refs, &ref_map, &tail);
069d5032
JH
1661 if (ref_map)
1662 backfill_tags(transport, ref_map);
b888d61c
DB
1663 free_refs(ref_map);
1664 }
1665
5b87d8d3 1666 cleanup:
5b87d8d3 1667 return retcode;
b888d61c
DB
1668}
1669
9c4a036b
BG
1670static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1671{
1672 struct string_list *list = priv;
7cc91a2f 1673 if (!remote->skip_default_update)
1d2f80fa 1674 string_list_append(list, remote->name);
9c4a036b
BG
1675 return 0;
1676}
1677
1678struct remote_group_data {
1679 const char *name;
1680 struct string_list *list;
1681};
1682
1683static int get_remote_group(const char *key, const char *value, void *priv)
1684{
1685 struct remote_group_data *g = priv;
1686
bc598c32 1687 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
9c4a036b 1688 /* split list by white space */
9c4a036b 1689 while (*value) {
5f65499f
MH
1690 size_t wordlen = strcspn(value, " \t\n");
1691
e286542d 1692 if (wordlen >= 1)
b7410f61 1693 string_list_append_nodup(g->list,
e286542d
MH
1694 xstrndup(value, wordlen));
1695 value += wordlen + (value[wordlen] != '\0');
9c4a036b
BG
1696 }
1697 }
1698
1699 return 0;
1700}
1701
1702static int add_remote_or_group(const char *name, struct string_list *list)
1703{
1704 int prev_nr = list->nr;
66dbfd55
GV
1705 struct remote_group_data g;
1706 g.name = name; g.list = list;
9c4a036b
BG
1707
1708 git_config(get_remote_group, &g);
1709 if (list->nr == prev_nr) {
674468b3 1710 struct remote *remote = remote_get(name);
e459b073 1711 if (!remote_is_configured(remote, 0))
9c4a036b 1712 return 0;
1d2f80fa 1713 string_list_append(list, remote->name);
9c4a036b
BG
1714 }
1715 return 1;
1716}
1717
22f9b7f3 1718static void add_options_to_argv(struct strvec *argv)
9c4a036b 1719{
28a15401 1720 if (dry_run)
22f9b7f3 1721 strvec_push(argv, "--dry-run");
90765fa3 1722 if (prune != -1)
22f9b7f3 1723 strvec_push(argv, prune ? "--prune" : "--no-prune");
97716d21 1724 if (prune_tags != -1)
22f9b7f3 1725 strvec_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
bba5322a 1726 if (update_head_ok)
22f9b7f3 1727 strvec_push(argv, "--update-head-ok");
bba5322a 1728 if (force)
22f9b7f3 1729 strvec_push(argv, "--force");
bba5322a 1730 if (keep)
22f9b7f3 1731 strvec_push(argv, "--keep");
be254a0e 1732 if (recurse_submodules == RECURSE_SUBMODULES_ON)
22f9b7f3 1733 strvec_push(argv, "--recurse-submodules");
8f0700dd 1734 else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
22f9b7f3 1735 strvec_push(argv, "--recurse-submodules=on-demand");
85566460 1736 if (tags == TAGS_SET)
22f9b7f3 1737 strvec_push(argv, "--tags");
85566460 1738 else if (tags == TAGS_UNSET)
22f9b7f3 1739 strvec_push(argv, "--no-tags");
9c4a036b 1740 if (verbosity >= 2)
22f9b7f3 1741 strvec_push(argv, "-v");
9c4a036b 1742 if (verbosity >= 1)
22f9b7f3 1743 strvec_push(argv, "-v");
9c4a036b 1744 else if (verbosity < 0)
22f9b7f3 1745 strvec_push(argv, "-q");
4e735c13 1746 if (family == TRANSPORT_FAMILY_IPV4)
6854689e 1747 strvec_push(argv, "--ipv4");
4e735c13 1748 else if (family == TRANSPORT_FAMILY_IPV6)
6854689e 1749 strvec_push(argv, "--ipv6");
7dce19d3
JL
1750}
1751
d54dea77
JS
1752/* Fetch multiple remotes in parallel */
1753
1754struct parallel_fetch_state {
1755 const char **argv;
1756 struct string_list *remotes;
1757 int next, result;
1758};
1759
1760static int fetch_next_remote(struct child_process *cp, struct strbuf *out,
1761 void *cb, void **task_cb)
1762{
1763 struct parallel_fetch_state *state = cb;
1764 char *remote;
1765
1766 if (state->next < 0 || state->next >= state->remotes->nr)
1767 return 0;
1768
1769 remote = state->remotes->items[state->next++].string;
1770 *task_cb = remote;
1771
22f9b7f3
JK
1772 strvec_pushv(&cp->args, state->argv);
1773 strvec_push(&cp->args, remote);
d54dea77
JS
1774 cp->git_cmd = 1;
1775
1776 if (verbosity >= 0)
1777 printf(_("Fetching %s\n"), remote);
1778
1779 return 1;
1780}
1781
1782static int fetch_failed_to_start(struct strbuf *out, void *cb, void *task_cb)
1783{
1784 struct parallel_fetch_state *state = cb;
1785 const char *remote = task_cb;
1786
1787 state->result = error(_("Could not fetch %s"), remote);
1788
1789 return 0;
1790}
1791
1792static int fetch_finished(int result, struct strbuf *out,
1793 void *cb, void *task_cb)
1794{
1795 struct parallel_fetch_state *state = cb;
1796 const char *remote = task_cb;
1797
1798 if (result) {
1799 strbuf_addf(out, _("could not fetch '%s' (exit code: %d)\n"),
1800 remote, result);
1801 state->result = -1;
1802 }
1803
1804 return 0;
1805}
1806
1807static int fetch_multiple(struct string_list *list, int max_children)
7dce19d3
JL
1808{
1809 int i, result = 0;
22f9b7f3 1810 struct strvec argv = STRVEC_INIT;
9c4a036b 1811
887952b8 1812 if (!append && write_fetch_head) {
e6cc5104
JH
1813 int errcode = truncate_fetch_head();
1814 if (errcode)
1815 return errcode;
1816 }
1817
22f9b7f3 1818 strvec_pushl(&argv, "fetch", "--append", "--no-auto-gc",
f6d8942b 1819 "--no-write-commit-graph", NULL);
85556d4e
JK
1820 add_options_to_argv(&argv);
1821
d54dea77 1822 if (max_children != 1 && list->nr != 1) {
d70a9eb6 1823 struct parallel_fetch_state state = { argv.v, list, 0, 0 };
d54dea77 1824
22f9b7f3 1825 strvec_push(&argv, "--end-of-options");
d54dea77
JS
1826 result = run_processes_parallel_tr2(max_children,
1827 &fetch_next_remote,
1828 &fetch_failed_to_start,
1829 &fetch_finished,
1830 &state,
1831 "fetch", "parallel/fetch");
1832
1833 if (!result)
1834 result = state.result;
1835 } else
1836 for (i = 0; i < list->nr; i++) {
1837 const char *name = list->items[i].string;
22f9b7f3 1838 strvec_push(&argv, name);
d54dea77
JS
1839 if (verbosity >= 0)
1840 printf(_("Fetching %s\n"), name);
d70a9eb6 1841 if (run_command_v_opt(argv.v, RUN_GIT_CMD)) {
d54dea77
JS
1842 error(_("Could not fetch %s"), name);
1843 result = 1;
1844 }
22f9b7f3 1845 strvec_pop(&argv);
9c4a036b 1846 }
9c4a036b 1847
22f9b7f3 1848 strvec_clear(&argv);
d54dea77 1849 return !!result;
9c4a036b
BG
1850}
1851
aa57b871
JH
1852/*
1853 * Fetching from the promisor remote should use the given filter-spec
1854 * or inherit the default filter-spec from the config.
1855 */
1856static inline void fetch_one_setup_partial(struct remote *remote)
1857{
1858 /*
1859 * Explicit --no-filter argument overrides everything, regardless
1860 * of any prior partial clones and fetches.
1861 */
1862 if (filter_options.no_filter)
1863 return;
1864
1865 /*
1866 * If no prior partial clone/fetch and the current fetch DID NOT
1867 * request a partial-fetch, do a normal fetch.
1868 */
b14ed5ad 1869 if (!has_promisor_remote() && !filter_options.choice)
aa57b871
JH
1870 return;
1871
1872 /*
5e461393
CC
1873 * If this is a partial-fetch request, we enable partial on
1874 * this repo if not already enabled and remember the given
1875 * filter-spec as the default for subsequent fetches to this
23547c40 1876 * remote if there is currently no default filter-spec.
aa57b871 1877 */
5e461393 1878 if (filter_options.choice) {
aa57b871
JH
1879 partial_clone_register(remote->name, &filter_options);
1880 return;
1881 }
1882
aa57b871
JH
1883 /*
1884 * Do a partial-fetch from the promisor remote using either the
1885 * explicitly given filter-spec or inherit the filter-spec from
1886 * the config.
1887 */
1888 if (!filter_options.choice)
fa3d1b63 1889 partial_clone_get_default_filter_spec(&filter_options, remote->name);
aa57b871
JH
1890 return;
1891}
1892
2b713c27
JT
1893static int fetch_one(struct remote *remote, int argc, const char **argv,
1894 int prune_tags_ok, int use_stdin_refspecs)
b888d61c 1895{
d7c8e307
BW
1896 struct refspec rs = REFSPEC_INIT_FETCH;
1897 int i;
7b7f39ea 1898 int exit_code;
6317972c
ÆAB
1899 int maybe_prune_tags;
1900 int remote_via_config = remote_is_configured(remote, 0);
b888d61c 1901
fa685bdf 1902 if (!remote)
bd4a51fc
ÆAB
1903 die(_("No remote repository specified. Please, specify either a URL or a\n"
1904 "remote name from which new revisions should be fetched."));
fa685bdf 1905
508ea882 1906 gtransport = prepare_transport(remote, 1);
737c5a9c
MS
1907
1908 if (prune < 0) {
1909 /* no command line request */
07118832
ÆAB
1910 if (0 <= remote->prune)
1911 prune = remote->prune;
737c5a9c
MS
1912 else if (0 <= fetch_prune_config)
1913 prune = fetch_prune_config;
1914 else
1915 prune = PRUNE_BY_DEFAULT;
1916 }
1917
97716d21
ÆAB
1918 if (prune_tags < 0) {
1919 /* no command line request */
1920 if (0 <= remote->prune_tags)
1921 prune_tags = remote->prune_tags;
1922 else if (0 <= fetch_prune_tags_config)
1923 prune_tags = fetch_prune_tags_config;
1924 else
1925 prune_tags = PRUNE_TAGS_BY_DEFAULT;
1926 }
1927
6317972c
ÆAB
1928 maybe_prune_tags = prune_tags_ok && prune_tags;
1929 if (maybe_prune_tags && remote_via_config)
95303500 1930 refspec_append(&remote->fetch, TAG_REFSPEC);
97716d21 1931
d7c8e307
BW
1932 if (maybe_prune_tags && (argc || !remote_via_config))
1933 refspec_append(&rs, TAG_REFSPEC);
6317972c 1934
d7c8e307
BW
1935 for (i = 0; i < argc; i++) {
1936 if (!strcmp(argv[i], "tag")) {
d7c8e307
BW
1937 i++;
1938 if (i >= argc)
1939 die(_("You need to specify a tag name."));
1940
1af8b8c0
RS
1941 refspec_appendf(&rs, "refs/tags/%s:refs/tags/%s",
1942 argv[i], argv[i]);
d7c8e307
BW
1943 } else {
1944 refspec_append(&rs, argv[i]);
b888d61c 1945 }
b888d61c
DB
1946 }
1947
2b713c27
JT
1948 if (use_stdin_refspecs) {
1949 struct strbuf line = STRBUF_INIT;
1950 while (strbuf_getline_lf(&line, stdin) != EOF)
1951 refspec_append(&rs, line.buf);
1952 strbuf_release(&line);
1953 }
1954
5e3548ef
BW
1955 if (server_options.nr)
1956 gtransport->server_options = &server_options;
1957
57b235a4 1958 sigchain_push_common(unlock_pack_on_signal);
e4022ed2 1959 atexit(unlock_pack);
14358894 1960 sigchain_push(SIGPIPE, SIG_IGN);
65a1301f 1961 exit_code = do_fetch(gtransport, &rs);
14358894 1962 sigchain_pop(SIGPIPE);
d7c8e307 1963 refspec_clear(&rs);
af234459
JH
1964 transport_disconnect(gtransport);
1965 gtransport = NULL;
7b7f39ea 1966 return exit_code;
b888d61c 1967}
9c4a036b
BG
1968
1969int cmd_fetch(int argc, const char **argv, const char *prefix)
1970{
1971 int i;
b7410f61 1972 struct string_list list = STRING_LIST_INIT_DUP;
a1743343 1973 struct remote *remote = NULL;
9c4a036b 1974 int result = 0;
c1a7902f 1975 int prune_tags_ok = 1;
9c4a036b 1976
bbc30f99
JK
1977 packet_trace_identity("fetch");
1978
9c4a036b
BG
1979 /* Record the command line for the reflog */
1980 strbuf_addstr(&default_rla, "fetch");
46da295a
JS
1981 for (i = 1; i < argc; i++) {
1982 /* This handles non-URLs gracefully */
1983 char *anon = transport_anonymize_url(argv[i]);
1984
1985 strbuf_addf(&default_rla, " %s", anon);
1986 free(anon);
1987 }
9c4a036b 1988
737c5a9c
MS
1989 git_config(git_fetch_config, NULL);
1990
9c4a036b
BG
1991 argc = parse_options(argc, argv, prefix,
1992 builtin_fetch_options, builtin_fetch_usage, 0);
e5b94213
JT
1993 if (recurse_submodules != RECURSE_SUBMODULES_OFF) {
1994 int *sfjc = submodule_fetch_jobs_config == -1
1995 ? &submodule_fetch_jobs_config : NULL;
1996 int *rs = recurse_submodules == RECURSE_SUBMODULES_DEFAULT
1997 ? &recurse_submodules : NULL;
1998
1999 fetch_config_from_gitmodules(sfjc, rs);
2000 }
9c4a036b 2001
eff40457
ÆAB
2002 if (negotiate_only && !negotiation_tip.nr)
2003 die(_("--negotiate-only needs one or more --negotiate-tip=*"));
2004
cccf74e2
NTND
2005 if (deepen_relative) {
2006 if (deepen_relative < 0)
2007 die(_("Negative depth in --deepen is not supported"));
2008 if (depth)
2009 die(_("--deepen and --depth are mutually exclusive"));
2010 depth = xstrfmt("%d", deepen_relative);
2011 }
4dcb167f
NTND
2012 if (unshallow) {
2013 if (depth)
2014 die(_("--depth and --unshallow cannot be used together"));
c8813487 2015 else if (!is_repository_shallow(the_repository))
4dcb167f 2016 die(_("--unshallow on a complete repository does not make sense"));
2805bb59
JK
2017 else
2018 depth = xstrfmt("%d", INFINITE_DEPTH);
4dcb167f
NTND
2019 }
2020
5594bcad
NTND
2021 /* no need to be strict, transport_set_option() will validate it again */
2022 if (depth && atoi(depth) < 1)
2023 die(_("depth %s is not a positive number"), depth);
a45a2600 2024 if (depth || deepen_since || deepen_not.nr)
508ea882 2025 deepen = 1;
5594bcad 2026
887952b8
JH
2027 /* FETCH_HEAD never gets updated in --dry-run mode */
2028 if (dry_run)
2029 write_fetch_head = 0;
2030
9c4a036b
BG
2031 if (all) {
2032 if (argc == 1)
bd4a51fc 2033 die(_("fetch --all does not take a repository argument"));
9c4a036b 2034 else if (argc > 1)
bd4a51fc 2035 die(_("fetch --all does not make sense with refspecs"));
9c4a036b 2036 (void) for_each_remote(get_one_remote_for_fetch, &list);
9c4a036b
BG
2037 } else if (argc == 0) {
2038 /* No arguments -- use default remote */
2039 remote = remote_get(NULL);
16679e37
BG
2040 } else if (multiple) {
2041 /* All arguments are assumed to be remotes or groups */
2042 for (i = 0; i < argc; i++)
2043 if (!add_remote_or_group(argv[i], &list))
bd4a51fc 2044 die(_("No such remote or remote group: %s"), argv[i]);
9c4a036b
BG
2045 } else {
2046 /* Single remote or group */
2047 (void) add_remote_or_group(argv[0], &list);
2048 if (list.nr > 1) {
2049 /* More than one remote */
2050 if (argc > 1)
bd4a51fc 2051 die(_("Fetching a group and specifying refspecs does not make sense"));
9c4a036b
BG
2052 } else {
2053 /* Zero or one remotes */
2054 remote = remote_get(argv[0]);
c1a7902f 2055 prune_tags_ok = (argc == 1);
a1743343
JT
2056 argc--;
2057 argv++;
9c4a036b
BG
2058 }
2059 }
2060
9c1e657a
JT
2061 if (negotiate_only) {
2062 struct oidset acked_commits = OIDSET_INIT;
2063 struct oidset_iter iter;
2064 const struct object_id *oid;
2065
2066 if (!remote)
2067 die(_("must supply remote when using --negotiate-only"));
2068 gtransport = prepare_transport(remote, 1);
2069 if (gtransport->smart_options) {
2070 gtransport->smart_options->acked_commits = &acked_commits;
2071 } else {
2072 warning(_("Protocol does not support --negotiate-only, exiting."));
2073 return 1;
2074 }
2075 if (server_options.nr)
2076 gtransport->server_options = &server_options;
2077 result = transport_fetch_refs(gtransport, NULL);
2078
2079 oidset_iter_init(&acked_commits, &iter);
2080 while ((oid = oidset_iter_next(&iter)))
2081 printf("%s\n", oid_to_hex(oid));
2082 oidset_clear(&acked_commits);
2083 } else if (remote) {
b14ed5ad 2084 if (filter_options.choice || has_promisor_remote())
aa57b871 2085 fetch_one_setup_partial(remote);
2b713c27 2086 result = fetch_one(remote, argc, argv, prune_tags_ok, stdin_refspecs);
acb0c572 2087 } else {
d54dea77
JS
2088 int max_children = max_jobs;
2089
acb0c572 2090 if (filter_options.choice)
e0137875
CC
2091 die(_("--filter can only be used with the remote "
2092 "configured in extensions.partialclone"));
d54dea77 2093
c7b190da
PS
2094 if (atomic_fetch)
2095 die(_("--atomic can only be used when fetching "
2096 "from one remote"));
2097
2b713c27
JT
2098 if (stdin_refspecs)
2099 die(_("--stdin can only be used when fetching "
2100 "from one remote"));
2101
d54dea77
JS
2102 if (max_children < 0)
2103 max_children = fetch_parallel_config;
2104
aa57b871 2105 /* TODO should this also die if we have a previous partial-clone? */
d54dea77 2106 result = fetch_multiple(&list, max_children);
acb0c572 2107 }
a1743343 2108
be254a0e 2109 if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
22f9b7f3 2110 struct strvec options = STRVEC_INIT;
d54dea77
JS
2111 int max_children = max_jobs;
2112
2113 if (max_children < 0)
2114 max_children = submodule_fetch_jobs_config;
2115 if (max_children < 0)
2116 max_children = fetch_parallel_config;
85556d4e
JK
2117
2118 add_options_to_argv(&options);
e724197f
BW
2119 result = fetch_populated_submodules(the_repository,
2120 &options,
7dce19d3 2121 submodule_prefix,
8f0700dd 2122 recurse_submodules,
8fa29159 2123 recurse_submodules_default,
62104ba1
SB
2124 verbosity < 0,
2125 max_children);
22f9b7f3 2126 strvec_clear(&options);
7dce19d3
JL
2127 }
2128
9c4a036b
BG
2129 string_list_clear(&list, 0);
2130
50f26bd0 2131 prepare_repo_settings(the_repository);
c14e6e79
JS
2132 if (fetch_write_commit_graph > 0 ||
2133 (fetch_write_commit_graph < 0 &&
2134 the_repository->settings.fetch_write_commit_graph)) {
5a535094 2135 int commit_graph_flags = COMMIT_GRAPH_WRITE_SPLIT;
50f26bd0
DS
2136
2137 if (progress)
5a535094 2138 commit_graph_flags |= COMMIT_GRAPH_WRITE_PROGRESS;
50f26bd0 2139
0bd52e27 2140 write_commit_graph_reachable(the_repository->objects->odb,
50f26bd0 2141 commit_graph_flags,
63020f17 2142 NULL);
50f26bd0
DS
2143 }
2144
2d511cfc 2145 close_object_store(the_repository->objects);
0898c962 2146
850b6ede 2147 if (enable_auto_gc)
a95ce124 2148 run_auto_maintenance(verbosity < 0);
131b8fcb 2149
9c4a036b
BG
2150 return result;
2151}