6 #include "repository.h"
9 #include "object-store.h"
13 #include "string-list.h"
15 #include "transport.h"
16 #include "run-command.h"
17 #include "parse-options.h"
19 #include "submodule-config.h"
20 #include "submodule.h"
21 #include "connected.h"
25 #include "list-objects-filter-options.h"
26 #include "commit-reach.h"
28 #include "promisor-remote.h"
29 #include "commit-graph.h"
32 #define FORCED_UPDATES_DELAY_WARNING_IN_MS (10 * 1000)
34 static const char * const builtin_fetch_usage
[] = {
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>]"),
48 static int fetch_prune_config
= -1; /* unspecified */
49 static int fetch_show_forced_updates
= 1;
50 static uint64_t forced_updates_ms
= 0;
51 static int prefetch
= 0;
52 static int prune
= -1; /* unspecified */
53 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
55 static int fetch_prune_tags_config
= -1; /* unspecified */
56 static int prune_tags
= -1; /* unspecified */
57 #define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
59 static int all
, append
, dry_run
, force
, keep
, multiple
, update_head_ok
;
60 static int write_fetch_head
= 1;
61 static int verbosity
, deepen_relative
, set_upstream
;
62 static int progress
= -1;
63 static int enable_auto_gc
= 1;
64 static int tags
= TAGS_DEFAULT
, unshallow
, update_shallow
, deepen
;
65 static int max_jobs
= -1, submodule_fetch_jobs_config
= -1;
66 static int fetch_parallel_config
= 1;
67 static int atomic_fetch
;
68 static enum transport_family family
;
69 static const char *depth
;
70 static const char *deepen_since
;
71 static const char *upload_pack
;
72 static struct string_list deepen_not
= STRING_LIST_INIT_NODUP
;
73 static struct strbuf default_rla
= STRBUF_INIT
;
74 static struct transport
*gtransport
;
75 static struct transport
*gsecondary
;
76 static const char *submodule_prefix
= "";
77 static int recurse_submodules
= RECURSE_SUBMODULES_DEFAULT
;
78 static int recurse_submodules_default
= RECURSE_SUBMODULES_ON_DEMAND
;
79 static int shown_url
= 0;
80 static struct refspec refmap
= REFSPEC_INIT_FETCH
;
81 static struct list_objects_filter_options filter_options
;
82 static struct string_list server_options
= STRING_LIST_INIT_DUP
;
83 static struct string_list negotiation_tip
= STRING_LIST_INIT_NODUP
;
84 static int fetch_write_commit_graph
= -1;
85 static int stdin_refspecs
= 0;
86 static int negotiate_only
;
88 static int git_fetch_config(const char *k
, const char *v
, void *cb
)
90 if (!strcmp(k
, "fetch.prune")) {
91 fetch_prune_config
= git_config_bool(k
, v
);
95 if (!strcmp(k
, "fetch.prunetags")) {
96 fetch_prune_tags_config
= git_config_bool(k
, v
);
100 if (!strcmp(k
, "fetch.showforcedupdates")) {
101 fetch_show_forced_updates
= git_config_bool(k
, v
);
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
;
111 if (!strcmp(k
, "submodule.fetchjobs")) {
112 submodule_fetch_jobs_config
= parse_submodule_fetchjobs(k
, v
);
114 } else if (!strcmp(k
, "fetch.recursesubmodules")) {
115 recurse_submodules
= parse_fetch_recurse_submodules_arg(k
, v
);
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"));
126 return git_default_config(k
, v
, cb
);
129 static int parse_refmap_arg(const struct option
*opt
, const char *arg
, int unset
)
131 BUG_ON_OPT_NEG(unset
);
134 * "git fetch --refmap='' origin foo"
135 * can be used to tell the command not to store anywhere
137 refspec_append(&refmap
, arg
);
142 static struct option builtin_fetch_options
[] = {
143 OPT__VERBOSITY(&verbosity
),
144 OPT_BOOL(0, "all", &all
,
145 N_("fetch from all remotes")),
146 OPT_BOOL(0, "set-upstream", &set_upstream
,
147 N_("set upstream for git pull/fetch")),
148 OPT_BOOL('a', "append", &append
,
149 N_("append to .git/FETCH_HEAD instead of overwriting")),
150 OPT_BOOL(0, "atomic", &atomic_fetch
,
151 N_("use atomic transaction to update references")),
152 OPT_STRING(0, "upload-pack", &upload_pack
, N_("path"),
153 N_("path to upload pack on remote end")),
154 OPT__FORCE(&force
, N_("force overwrite of local reference"), 0),
155 OPT_BOOL('m', "multiple", &multiple
,
156 N_("fetch from multiple remotes")),
157 OPT_SET_INT('t', "tags", &tags
,
158 N_("fetch all tags and associated objects"), TAGS_SET
),
159 OPT_SET_INT('n', NULL
, &tags
,
160 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET
),
161 OPT_INTEGER('j', "jobs", &max_jobs
,
162 N_("number of submodules fetched in parallel")),
163 OPT_BOOL(0, "prefetch", &prefetch
,
164 N_("modify the refspec to place all refs within refs/prefetch/")),
165 OPT_BOOL('p', "prune", &prune
,
166 N_("prune remote-tracking branches no longer on remote")),
167 OPT_BOOL('P', "prune-tags", &prune_tags
,
168 N_("prune local tags no longer on remote and clobber changed tags")),
169 OPT_CALLBACK_F(0, "recurse-submodules", &recurse_submodules
, N_("on-demand"),
170 N_("control recursive fetching of submodules"),
171 PARSE_OPT_OPTARG
, option_fetch_parse_recurse_submodules
),
172 OPT_BOOL(0, "dry-run", &dry_run
,
174 OPT_BOOL(0, "write-fetch-head", &write_fetch_head
,
175 N_("write fetched references to the FETCH_HEAD file")),
176 OPT_BOOL('k', "keep", &keep
, N_("keep downloaded pack")),
177 OPT_BOOL('u', "update-head-ok", &update_head_ok
,
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")),
182 OPT_STRING(0, "shallow-since", &deepen_since
, N_("time"),
183 N_("deepen history of shallow repository based on time")),
184 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not
, N_("revision"),
185 N_("deepen history of shallow clone, excluding rev")),
186 OPT_INTEGER(0, "deepen", &deepen_relative
,
187 N_("deepen history of shallow clone")),
188 OPT_SET_INT_F(0, "unshallow", &unshallow
,
189 N_("convert to a complete repository"),
191 { OPTION_STRING
, 0, "submodule-prefix", &submodule_prefix
, N_("dir"),
192 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN
},
193 OPT_CALLBACK_F(0, "recurse-submodules-default",
194 &recurse_submodules_default
, N_("on-demand"),
195 N_("default for recursive fetching of submodules "
196 "(lower priority than config files)"),
197 PARSE_OPT_HIDDEN
, option_fetch_parse_recurse_submodules
),
198 OPT_BOOL(0, "update-shallow", &update_shallow
,
199 N_("accept refs that update .git/shallow")),
200 OPT_CALLBACK_F(0, "refmap", NULL
, N_("refmap"),
201 N_("specify fetch refmap"), PARSE_OPT_NONEG
, parse_refmap_arg
),
202 OPT_STRING_LIST('o', "server-option", &server_options
, N_("server-specific"), N_("option to transmit")),
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
),
207 OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip
, N_("revision"),
208 N_("report that we have only objects reachable from this object")),
209 OPT_BOOL(0, "negotiate-only", &negotiate_only
,
210 N_("do not fetch a packfile; instead, print ancestors of negotiation tips")),
211 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options
),
212 OPT_BOOL(0, "auto-maintenance", &enable_auto_gc
,
213 N_("run 'maintenance --auto' after fetching")),
214 OPT_BOOL(0, "auto-gc", &enable_auto_gc
,
215 N_("run 'maintenance --auto' after fetching")),
216 OPT_BOOL(0, "show-forced-updates", &fetch_show_forced_updates
,
217 N_("check for forced-updates on all updated branches")),
218 OPT_BOOL(0, "write-commit-graph", &fetch_write_commit_graph
,
219 N_("write the commit-graph after fetching")),
220 OPT_BOOL(0, "stdin", &stdin_refspecs
,
221 N_("accept refspecs from stdin")),
225 static void unlock_pack(void)
228 transport_unlock_pack(gtransport
);
230 transport_unlock_pack(gsecondary
);
233 static void unlock_pack_on_signal(int signo
)
240 static void add_merge_config(struct ref
**head
,
241 const struct ref
*remote_refs
,
242 struct branch
*branch
,
247 for (i
= 0; i
< branch
->merge_nr
; i
++) {
248 struct ref
*rm
, **old_tail
= *tail
;
249 struct refspec_item refspec
;
251 for (rm
= *head
; rm
; rm
= rm
->next
) {
252 if (branch_merge_matches(branch
, i
, rm
->name
)) {
253 rm
->fetch_head_status
= FETCH_HEAD_MERGE
;
261 * Not fetched to a remote-tracking branch? We need to fetch
262 * it anyway to allow this branch's "branch.$name.merge"
263 * to be honored by 'git pull', but we do not have to
264 * fail if branch.$name.merge is misconfigured to point
265 * at a nonexisting branch. If we were indeed called by
266 * 'git pull', it will notice the misconfiguration because
267 * there is no entry in the resulting FETCH_HEAD marked
270 memset(&refspec
, 0, sizeof(refspec
));
271 refspec
.src
= branch
->merge
[i
]->src
;
272 get_fetch_map(remote_refs
, &refspec
, tail
, 1);
273 for (rm
= *old_tail
; rm
; rm
= rm
->next
)
274 rm
->fetch_head_status
= FETCH_HEAD_MERGE
;
278 static void create_fetch_oidset(struct ref
**head
, struct oidset
*out
)
280 struct ref
*rm
= *head
;
282 oidset_insert(out
, &rm
->old_oid
);
287 struct refname_hash_entry
{
288 struct hashmap_entry ent
;
289 struct object_id oid
;
291 char refname
[FLEX_ARRAY
];
294 static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data
,
295 const struct hashmap_entry
*eptr
,
296 const struct hashmap_entry
*entry_or_key
,
299 const struct refname_hash_entry
*e1
, *e2
;
301 e1
= container_of(eptr
, const struct refname_hash_entry
, ent
);
302 e2
= container_of(entry_or_key
, const struct refname_hash_entry
, ent
);
303 return strcmp(e1
->refname
, keydata
? keydata
: e2
->refname
);
306 static struct refname_hash_entry
*refname_hash_add(struct hashmap
*map
,
308 const struct object_id
*oid
)
310 struct refname_hash_entry
*ent
;
311 size_t len
= strlen(refname
);
313 FLEX_ALLOC_MEM(ent
, refname
, refname
, len
);
314 hashmap_entry_init(&ent
->ent
, strhash(refname
));
315 oidcpy(&ent
->oid
, oid
);
316 hashmap_add(map
, &ent
->ent
);
320 static int add_one_refname(const char *refname
,
321 const struct object_id
*oid
,
322 int flag
, void *cbdata
)
324 struct hashmap
*refname_map
= cbdata
;
326 (void) refname_hash_add(refname_map
, refname
, oid
);
330 static void refname_hash_init(struct hashmap
*map
)
332 hashmap_init(map
, refname_hash_entry_cmp
, NULL
, 0);
335 static int refname_hash_exists(struct hashmap
*map
, const char *refname
)
337 return !!hashmap_get_from_hash(map
, strhash(refname
), refname
);
340 static void clear_item(struct refname_hash_entry
*item
)
345 static void find_non_local_tags(const struct ref
*refs
,
349 struct hashmap existing_refs
;
350 struct hashmap remote_refs
;
351 struct oidset fetch_oids
= OIDSET_INIT
;
352 struct string_list remote_refs_list
= STRING_LIST_INIT_NODUP
;
353 struct string_list_item
*remote_ref_item
;
354 const struct ref
*ref
;
355 struct refname_hash_entry
*item
= NULL
;
356 const int quick_flags
= OBJECT_INFO_QUICK
| OBJECT_INFO_SKIP_FETCH_OBJECT
;
358 refname_hash_init(&existing_refs
);
359 refname_hash_init(&remote_refs
);
360 create_fetch_oidset(head
, &fetch_oids
);
362 for_each_ref(add_one_refname
, &existing_refs
);
363 for (ref
= refs
; ref
; ref
= ref
->next
) {
364 if (!starts_with(ref
->name
, "refs/tags/"))
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.
373 if (ends_with(ref
->name
, "^{}")) {
375 !has_object_file_with_flags(&ref
->old_oid
, quick_flags
) &&
376 !oidset_contains(&fetch_oids
, &ref
->old_oid
) &&
377 !has_object_file_with_flags(&item
->oid
, quick_flags
) &&
378 !oidset_contains(&fetch_oids
, &item
->oid
))
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
391 !has_object_file_with_flags(&item
->oid
, quick_flags
) &&
392 !oidset_contains(&fetch_oids
, &item
->oid
))
397 /* skip duplicates and refs that we already have */
398 if (refname_hash_exists(&remote_refs
, ref
->name
) ||
399 refname_hash_exists(&existing_refs
, ref
->name
))
402 item
= refname_hash_add(&remote_refs
, ref
->name
, &ref
->old_oid
);
403 string_list_insert(&remote_refs_list
, ref
->name
);
405 hashmap_clear_and_free(&existing_refs
, struct refname_hash_entry
, ent
);
408 * We may have a final lightweight tag that needs to be
409 * checked to see if it needs fetching.
412 !has_object_file_with_flags(&item
->oid
, quick_flags
) &&
413 !oidset_contains(&fetch_oids
, &item
->oid
))
417 * For all the tags in the remote_refs_list,
418 * add them to the list of refs to be fetched
420 for_each_string_list_item(remote_ref_item
, &remote_refs_list
) {
421 const char *refname
= remote_ref_item
->string
;
423 unsigned int hash
= strhash(refname
);
425 item
= hashmap_get_entry_from_hash(&remote_refs
, hash
, refname
,
426 struct refname_hash_entry
, ent
);
428 BUG("unseen remote ref?");
430 /* Unless we have already decided to ignore this item... */
434 rm
= alloc_ref(item
->refname
);
435 rm
->peer_ref
= alloc_ref(item
->refname
);
436 oidcpy(&rm
->old_oid
, &item
->oid
);
440 hashmap_clear_and_free(&remote_refs
, struct refname_hash_entry
, ent
);
441 string_list_clear(&remote_refs_list
, 0);
442 oidset_clear(&fetch_oids
);
445 static void filter_prefetch_refspec(struct refspec
*rs
)
452 for (i
= 0; i
< rs
->nr
; i
++) {
453 struct strbuf new_dst
= STRBUF_INIT
;
455 const char *sub
= NULL
;
457 if (rs
->items
[i
].negative
)
459 if (!rs
->items
[i
].dst
||
461 !strncmp(rs
->items
[i
].src
, "refs/tags/", 10))) {
464 free(rs
->items
[i
].src
);
465 free(rs
->items
[i
].dst
);
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
];
476 old_dst
= rs
->items
[i
].dst
;
477 strbuf_addstr(&new_dst
, "refs/prefetch/");
480 * If old_dst starts with "refs/", then place
481 * sub after that prefix. Otherwise, start at
482 * the beginning of the string.
484 if (!skip_prefix(old_dst
, "refs/", &sub
))
486 strbuf_addstr(&new_dst
, sub
);
488 rs
->items
[i
].dst
= strbuf_detach(&new_dst
, NULL
);
489 rs
->items
[i
].force
= 1;
495 static struct ref
*get_ref_map(struct remote
*remote
,
496 const struct ref
*remote_refs
,
498 int tags
, int *autotags
)
502 struct ref
*ref_map
= NULL
;
503 struct ref
**tail
= &ref_map
;
505 /* opportunistically-updated references: */
506 struct ref
*orefs
= NULL
, **oref_tail
= &orefs
;
508 struct hashmap existing_refs
;
509 int existing_refs_populated
= 0;
511 filter_prefetch_refspec(rs
);
513 filter_prefetch_refspec(&remote
->fetch
);
516 struct refspec
*fetch_refspec
;
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])
523 /* Merge everything on the command line (but not --tags) */
524 for (rm
= ref_map
; rm
; rm
= rm
->next
)
525 rm
->fetch_head_status
= FETCH_HEAD_MERGE
;
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.
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.
548 fetch_refspec
= &refmap
;
550 fetch_refspec
= &remote
->fetch
;
552 for (i
= 0; i
< fetch_refspec
->nr
; i
++)
553 get_fetch_map(ref_map
, &fetch_refspec
->items
[i
], &oref_tail
, 1);
554 } else if (refmap
.nr
) {
555 die("--refmap option is only meaningful with command-line refspec(s).");
557 /* Use the defaults */
558 struct branch
*branch
= branch_get(NULL
);
559 int has_merge
= branch_has_merge_config(branch
);
562 /* Note: has_merge implies non-NULL branch->remote_name */
563 (has_merge
&& !strcmp(branch
->remote_name
, remote
->name
)))) {
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])
569 if (!i
&& !has_merge
&& ref_map
&&
570 !remote
->fetch
.items
[0].pattern
)
571 ref_map
->fetch_head_status
= FETCH_HEAD_MERGE
;
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.
578 * Note: has_merge implies non-NULL branch->remote_name
581 !strcmp(branch
->remote_name
, remote
->name
))
582 add_merge_config(&ref_map
, remote_refs
, branch
, &tail
);
583 } else if (!prefetch
) {
584 ref_map
= get_remote_ref(remote_refs
, "HEAD");
586 die(_("Couldn't find remote ref HEAD"));
587 ref_map
->fetch_head_status
= FETCH_HEAD_MERGE
;
588 tail
= &ref_map
->next
;
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
)
596 find_non_local_tags(remote_refs
, &ref_map
, &tail
);
598 /* Now append any refs to be updated opportunistically: */
600 for (rm
= orefs
; rm
; rm
= rm
->next
) {
601 rm
->fetch_head_status
= FETCH_HEAD_IGNORE
;
606 * apply negative refspecs first, before we remove duplicates. This is
607 * necessary as negative refspecs might remove an otherwise conflicting
611 ref_map
= apply_negative_refspecs(ref_map
, rs
);
613 ref_map
= apply_negative_refspecs(ref_map
, &remote
->fetch
);
615 ref_map
= ref_remove_duplicates(ref_map
);
617 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
619 const char *refname
= rm
->peer_ref
->name
;
620 struct refname_hash_entry
*peer_item
;
621 unsigned int hash
= strhash(refname
);
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;
629 peer_item
= hashmap_get_entry_from_hash(&existing_refs
,
631 struct refname_hash_entry
, ent
);
633 struct object_id
*old_oid
= &peer_item
->oid
;
634 oidcpy(&rm
->peer_ref
->old_oid
, old_oid
);
638 if (existing_refs_populated
)
639 hashmap_clear_and_free(&existing_refs
, struct refname_hash_entry
, ent
);
644 #define STORE_REF_ERROR_OTHER 1
645 #define STORE_REF_ERROR_DF_CONFLICT 2
647 static int s_update_ref(const char *action
,
649 struct ref_transaction
*transaction
,
653 char *rla
= getenv("GIT_REFLOG_ACTION");
654 struct ref_transaction
*our_transaction
= NULL
;
655 struct strbuf err
= STRBUF_INIT
;
661 rla
= default_rla
.buf
;
662 msg
= xstrfmt("%s: %s", rla
, action
);
665 * If no transaction was passed to us, we manage the transaction
666 * ourselves. Otherwise, we trust the caller to handle the transaction
670 transaction
= our_transaction
= ref_transaction_begin(&err
);
672 ret
= STORE_REF_ERROR_OTHER
;
677 ret
= ref_transaction_update(transaction
, ref
->name
, &ref
->new_oid
,
678 check_old
? &ref
->old_oid
: NULL
,
681 ret
= STORE_REF_ERROR_OTHER
;
685 if (our_transaction
) {
686 switch (ref_transaction_commit(our_transaction
, &err
)) {
689 case TRANSACTION_NAME_CONFLICT
:
690 ret
= STORE_REF_ERROR_DF_CONFLICT
;
693 ret
= STORE_REF_ERROR_OTHER
;
699 ref_transaction_free(our_transaction
);
701 error("%s", err
.buf
);
702 strbuf_release(&err
);
707 static int refcol_width
= 10;
708 static int compact_format
;
710 static void adjust_refcol_width(const struct ref
*ref
)
712 int max
, rlen
, llen
, len
;
714 /* uptodate lines are only shown on high verbosity level */
715 if (verbosity
<= 0 && oideq(&ref
->peer_ref
->old_oid
, &ref
->old_oid
))
718 max
= term_columns();
719 rlen
= utf8_strwidth(prettify_refname(ref
->name
));
721 llen
= utf8_strwidth(prettify_refname(ref
->peer_ref
->name
));
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)
729 if (compact_format
) {
733 len
= 21 /* flag and summary */ + rlen
+ 4 /* -> */ + llen
;
738 * Not precise calculation for compact mode because '*' can
739 * appear on the left hand side of '->' and shrink the column
742 if (refcol_width
< rlen
)
746 static void prepare_format_display(struct ref
*ref_map
)
749 const char *format
= "full";
754 git_config_get_string_tmp("fetch.output", &format
);
755 if (!strcasecmp(format
, "full"))
757 else if (!strcasecmp(format
, "compact"))
760 die(_("configuration fetch.output contains invalid value %s"),
763 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
764 if (rm
->status
== REF_STATUS_REJECT_SHALLOW
||
766 !strcmp(rm
->name
, "HEAD"))
769 adjust_refcol_width(rm
);
773 static void print_remote_to_local(struct strbuf
*display
,
774 const char *remote
, const char *local
)
776 strbuf_addf(display
, "%-*s -> %s", refcol_width
, remote
, local
);
779 static int find_and_replace(struct strbuf
*haystack
,
781 const char *placeholder
)
783 const char *p
= NULL
;
786 nlen
= strlen(needle
);
787 if (ends_with(haystack
->buf
, needle
))
788 p
= haystack
->buf
+ haystack
->len
- nlen
;
790 p
= strstr(haystack
->buf
, needle
);
794 if (p
> haystack
->buf
&& p
[-1] != '/')
798 if (plen
> nlen
&& p
[nlen
] != '/')
801 strbuf_splice(haystack
, p
- haystack
->buf
, nlen
,
802 placeholder
, strlen(placeholder
));
806 static void print_compact(struct strbuf
*display
,
807 const char *remote
, const char *local
)
809 struct strbuf r
= STRBUF_INIT
;
810 struct strbuf l
= STRBUF_INIT
;
812 if (!strcmp(remote
, local
)) {
813 strbuf_addf(display
, "%-*s -> *", refcol_width
, remote
);
817 strbuf_addstr(&r
, remote
);
818 strbuf_addstr(&l
, local
);
820 if (!find_and_replace(&r
, local
, "*"))
821 find_and_replace(&l
, remote
, "*");
822 print_remote_to_local(display
, r
.buf
, l
.buf
);
828 static void format_display(struct strbuf
*display
, char code
,
829 const char *summary
, const char *error
,
830 const char *remote
, const char *local
,
838 width
= (summary_width
+ strlen(summary
) - gettext_width(summary
));
840 strbuf_addf(display
, "%c %-*s ", code
, width
, summary
);
842 print_remote_to_local(display
, remote
, local
);
844 print_compact(display
, remote
, local
);
846 strbuf_addf(display
, " (%s)", error
);
849 static int update_local_ref(struct ref
*ref
,
850 struct ref_transaction
*transaction
,
852 const struct ref
*remote_ref
,
853 struct strbuf
*display
,
856 struct commit
*current
= NULL
, *updated
;
857 struct branch
*current_branch
= branch_get(NULL
);
858 const char *pretty_ref
= prettify_refname(ref
->name
);
859 int fast_forward
= 0;
861 if (!repo_has_object_file(the_repository
, &ref
->new_oid
))
862 die(_("object %s not found"), oid_to_hex(&ref
->new_oid
));
864 if (oideq(&ref
->old_oid
, &ref
->new_oid
)) {
866 format_display(display
, '=', _("[up to date]"), NULL
,
867 remote
, pretty_ref
, summary_width
);
871 if (current_branch
&&
872 !strcmp(ref
->name
, current_branch
->name
) &&
873 !(update_head_ok
|| is_bare_repository()) &&
874 !is_null_oid(&ref
->old_oid
)) {
876 * If this is the head, and it's not okay to update
877 * the head, and the old value of the head isn't empty...
879 format_display(display
, '!', _("[rejected]"),
880 _("can't fetch in current branch"),
881 remote
, pretty_ref
, summary_width
);
885 if (!is_null_oid(&ref
->old_oid
) &&
886 starts_with(ref
->name
, "refs/tags/")) {
887 if (force
|| ref
->force
) {
889 r
= s_update_ref("updating tag", ref
, transaction
, 0);
890 format_display(display
, r
? '!' : 't', _("[tag update]"),
891 r
? _("unable to update local ref") : NULL
,
892 remote
, pretty_ref
, summary_width
);
895 format_display(display
, '!', _("[rejected]"), _("would clobber existing tag"),
896 remote
, pretty_ref
, summary_width
);
901 current
= lookup_commit_reference_gently(the_repository
,
903 updated
= lookup_commit_reference_gently(the_repository
,
905 if (!current
|| !updated
) {
910 * Nicely describe the new ref we're fetching.
911 * Base this on the remote's ref name, as it's
912 * more likely to follow a standard layout.
914 const char *name
= remote_ref
? remote_ref
->name
: "";
915 if (starts_with(name
, "refs/tags/")) {
917 what
= _("[new tag]");
918 } else if (starts_with(name
, "refs/heads/")) {
919 msg
= "storing head";
920 what
= _("[new branch]");
923 what
= _("[new ref]");
926 r
= s_update_ref(msg
, ref
, transaction
, 0);
927 format_display(display
, r
? '!' : '*', what
,
928 r
? _("unable to update local ref") : NULL
,
929 remote
, pretty_ref
, summary_width
);
933 if (fetch_show_forced_updates
) {
934 uint64_t t_before
= getnanotime();
935 fast_forward
= in_merge_bases(current
, updated
);
936 forced_updates_ms
+= (getnanotime() - t_before
) / 1000000;
942 struct strbuf quickref
= STRBUF_INIT
;
945 strbuf_add_unique_abbrev(&quickref
, ¤t
->object
.oid
, DEFAULT_ABBREV
);
946 strbuf_addstr(&quickref
, "..");
947 strbuf_add_unique_abbrev(&quickref
, &ref
->new_oid
, DEFAULT_ABBREV
);
948 r
= s_update_ref("fast-forward", ref
, transaction
, 1);
949 format_display(display
, r
? '!' : ' ', quickref
.buf
,
950 r
? _("unable to update local ref") : NULL
,
951 remote
, pretty_ref
, summary_width
);
952 strbuf_release(&quickref
);
954 } else if (force
|| ref
->force
) {
955 struct strbuf quickref
= STRBUF_INIT
;
957 strbuf_add_unique_abbrev(&quickref
, ¤t
->object
.oid
, DEFAULT_ABBREV
);
958 strbuf_addstr(&quickref
, "...");
959 strbuf_add_unique_abbrev(&quickref
, &ref
->new_oid
, DEFAULT_ABBREV
);
960 r
= s_update_ref("forced-update", ref
, transaction
, 1);
961 format_display(display
, r
? '!' : '+', quickref
.buf
,
962 r
? _("unable to update local ref") : _("forced update"),
963 remote
, pretty_ref
, summary_width
);
964 strbuf_release(&quickref
);
967 format_display(display
, '!', _("[rejected]"), _("non-fast-forward"),
968 remote
, pretty_ref
, summary_width
);
973 static const struct object_id
*iterate_ref_map(void *cb_data
)
975 struct ref
**rm
= cb_data
;
976 struct ref
*ref
= *rm
;
978 while (ref
&& ref
->status
== REF_STATUS_REJECT_SHALLOW
)
983 return &ref
->old_oid
;
991 static int open_fetch_head(struct fetch_head
*fetch_head
)
993 const char *filename
= git_path_fetch_head(the_repository
);
995 if (write_fetch_head
) {
996 fetch_head
->fp
= fopen(filename
, "a");
998 return error_errno(_("cannot open %s"), filename
);
999 strbuf_init(&fetch_head
->buf
, 0);
1001 fetch_head
->fp
= NULL
;
1007 static void append_fetch_head(struct fetch_head
*fetch_head
,
1008 const struct object_id
*old_oid
,
1009 enum fetch_head_status fetch_head_status
,
1011 const char *url
, size_t url_len
)
1013 char old_oid_hex
[GIT_MAX_HEXSZ
+ 1];
1014 const char *merge_status_marker
;
1017 if (!fetch_head
->fp
)
1020 switch (fetch_head_status
) {
1021 case FETCH_HEAD_NOT_FOR_MERGE
:
1022 merge_status_marker
= "not-for-merge";
1024 case FETCH_HEAD_MERGE
:
1025 merge_status_marker
= "";
1028 /* do not write anything to FETCH_HEAD */
1032 strbuf_addf(&fetch_head
->buf
, "%s\t%s\t%s",
1033 oid_to_hex_r(old_oid_hex
, old_oid
), merge_status_marker
, note
);
1034 for (i
= 0; i
< url_len
; ++i
)
1036 strbuf_addstr(&fetch_head
->buf
, "\\n");
1038 strbuf_addch(&fetch_head
->buf
, url
[i
]);
1039 strbuf_addch(&fetch_head
->buf
, '\n');
1042 * When using an atomic fetch, we do not want to update FETCH_HEAD if
1043 * any of the reference updates fails. We thus have to write all
1044 * updates to a buffer first and only commit it as soon as all
1045 * references have been successfully updated.
1047 if (!atomic_fetch
) {
1048 strbuf_write(&fetch_head
->buf
, fetch_head
->fp
);
1049 strbuf_reset(&fetch_head
->buf
);
1053 static void commit_fetch_head(struct fetch_head
*fetch_head
)
1055 if (!fetch_head
->fp
|| !atomic_fetch
)
1057 strbuf_write(&fetch_head
->buf
, fetch_head
->fp
);
1060 static void close_fetch_head(struct fetch_head
*fetch_head
)
1062 if (!fetch_head
->fp
)
1065 fclose(fetch_head
->fp
);
1066 strbuf_release(&fetch_head
->buf
);
1069 static const char warn_show_forced_updates
[] =
1070 N_("Fetch normally indicates which branches had a forced update,\n"
1071 "but that check has been disabled. To re-enable, use '--show-forced-updates'\n"
1072 "flag or run 'git config fetch.showForcedUpdates true'.");
1073 static const char warn_time_show_forced_updates
[] =
1074 N_("It took %.2f seconds to check forced updates. You can use\n"
1075 "'--no-show-forced-updates' or run 'git config fetch.showForcedUpdates false'\n"
1076 " to avoid this check.\n");
1078 static int store_updated_refs(const char *raw_url
, const char *remote_name
,
1079 int connectivity_checked
, struct ref
*ref_map
)
1081 struct fetch_head fetch_head
;
1082 int url_len
, i
, rc
= 0;
1083 struct strbuf note
= STRBUF_INIT
, err
= STRBUF_INIT
;
1084 struct ref_transaction
*transaction
= NULL
;
1085 const char *what
, *kind
;
1089 int summary_width
= transport_summary_width(ref_map
);
1091 rc
= open_fetch_head(&fetch_head
);
1096 url
= transport_anonymize_url(raw_url
);
1098 url
= xstrdup("foreign");
1100 if (!connectivity_checked
) {
1101 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
1104 if (check_connected(iterate_ref_map
, &rm
, &opt
)) {
1105 rc
= error(_("%s did not send all necessary objects\n"), url
);
1111 transaction
= ref_transaction_begin(&err
);
1113 error("%s", err
.buf
);
1118 prepare_format_display(ref_map
);
1121 * We do a pass for each fetch_head_status type in their enum order, so
1122 * merged entries are written before not-for-merge. That lets readers
1123 * use FETCH_HEAD as a refname to refer to the ref to be merged.
1125 for (want_status
= FETCH_HEAD_MERGE
;
1126 want_status
<= FETCH_HEAD_IGNORE
;
1128 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
1129 struct commit
*commit
= NULL
;
1130 struct ref
*ref
= NULL
;
1132 if (rm
->status
== REF_STATUS_REJECT_SHALLOW
) {
1133 if (want_status
== FETCH_HEAD_MERGE
)
1134 warning(_("rejected %s because shallow roots are not allowed to be updated"),
1135 rm
->peer_ref
? rm
->peer_ref
->name
: rm
->name
);
1140 * References in "refs/tags/" are often going to point
1141 * to annotated tags, which are not part of the
1142 * commit-graph. We thus only try to look up refs in
1143 * the graph which are not in that namespace to not
1144 * regress performance in repositories with many
1147 if (!starts_with(rm
->name
, "refs/tags/"))
1148 commit
= lookup_commit_in_graph(the_repository
, &rm
->old_oid
);
1150 commit
= lookup_commit_reference_gently(the_repository
,
1154 rm
->fetch_head_status
= FETCH_HEAD_NOT_FOR_MERGE
;
1157 if (rm
->fetch_head_status
!= want_status
)
1161 ref
= alloc_ref(rm
->peer_ref
->name
);
1162 oidcpy(&ref
->old_oid
, &rm
->peer_ref
->old_oid
);
1163 oidcpy(&ref
->new_oid
, &rm
->old_oid
);
1164 ref
->force
= rm
->peer_ref
->force
;
1167 if (recurse_submodules
!= RECURSE_SUBMODULES_OFF
&&
1168 (!rm
->peer_ref
|| !oideq(&ref
->old_oid
, &ref
->new_oid
))) {
1169 check_for_new_submodule_commits(&rm
->old_oid
);
1172 if (!strcmp(rm
->name
, "HEAD")) {
1176 else if (skip_prefix(rm
->name
, "refs/heads/", &what
))
1178 else if (skip_prefix(rm
->name
, "refs/tags/", &what
))
1180 else if (skip_prefix(rm
->name
, "refs/remotes/", &what
))
1181 kind
= "remote-tracking branch";
1187 url_len
= strlen(url
);
1188 for (i
= url_len
- 1; url
[i
] == '/' && 0 <= i
; i
--)
1191 if (4 < i
&& !strncmp(".git", url
+ i
- 3, 4))
1194 strbuf_reset(¬e
);
1197 strbuf_addf(¬e
, "%s ", kind
);
1198 strbuf_addf(¬e
, "'%s' of ", what
);
1201 append_fetch_head(&fetch_head
, &rm
->old_oid
,
1202 rm
->fetch_head_status
,
1203 note
.buf
, url
, url_len
);
1205 strbuf_reset(¬e
);
1207 rc
|= update_local_ref(ref
, transaction
, what
,
1208 rm
, ¬e
, summary_width
);
1210 } else if (write_fetch_head
|| dry_run
) {
1212 * Display fetches written to FETCH_HEAD (or
1213 * would be written to FETCH_HEAD, if --dry-run
1216 format_display(¬e
, '*',
1217 *kind
? kind
: "branch", NULL
,
1218 *what
? what
: "HEAD",
1219 "FETCH_HEAD", summary_width
);
1223 fprintf(stderr
, _("From %.*s\n"),
1227 fprintf(stderr
, " %s\n", note
.buf
);
1232 if (!rc
&& transaction
) {
1233 rc
= ref_transaction_commit(transaction
, &err
);
1235 error("%s", err
.buf
);
1241 commit_fetch_head(&fetch_head
);
1243 if (rc
& STORE_REF_ERROR_DF_CONFLICT
)
1244 error(_("some local refs could not be updated; try running\n"
1245 " 'git remote prune %s' to remove any old, conflicting "
1246 "branches"), remote_name
);
1248 if (advice_enabled(ADVICE_FETCH_SHOW_FORCED_UPDATES
)) {
1249 if (!fetch_show_forced_updates
) {
1250 warning(_(warn_show_forced_updates
));
1251 } else if (forced_updates_ms
> FORCED_UPDATES_DELAY_WARNING_IN_MS
) {
1252 warning(_(warn_time_show_forced_updates
),
1253 forced_updates_ms
/ 1000.0);
1258 strbuf_release(¬e
);
1259 strbuf_release(&err
);
1260 ref_transaction_free(transaction
);
1262 close_fetch_head(&fetch_head
);
1267 * We would want to bypass the object transfer altogether if
1268 * everything we are going to fetch already exists and is connected
1271 static int check_exist_and_connected(struct ref
*ref_map
)
1273 struct ref
*rm
= ref_map
;
1274 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
1278 * If we are deepening a shallow clone we already have these
1279 * objects reachable. Running rev-list here will return with
1280 * a good (0) exit status and we'll bypass the fetch that we
1281 * really need to perform. Claiming failure now will ensure
1282 * we perform the network exchange to deepen our history.
1288 * check_connected() allows objects to merely be promised, but
1289 * we need all direct targets to exist.
1291 for (r
= rm
; r
; r
= r
->next
) {
1292 if (!has_object_file_with_flags(&r
->old_oid
,
1293 OBJECT_INFO_SKIP_FETCH_OBJECT
))
1298 return check_connected(iterate_ref_map
, &rm
, &opt
);
1301 static int fetch_and_consume_refs(struct transport
*transport
, struct ref
*ref_map
)
1303 int connectivity_checked
= 1;
1307 * We don't need to perform a fetch in case we can already satisfy all
1310 ret
= check_exist_and_connected(ref_map
);
1312 trace2_region_enter("fetch", "fetch_refs", the_repository
);
1313 ret
= transport_fetch_refs(transport
, ref_map
);
1314 trace2_region_leave("fetch", "fetch_refs", the_repository
);
1317 connectivity_checked
= transport
->smart_options
?
1318 transport
->smart_options
->connectivity_checked
: 0;
1321 trace2_region_enter("fetch", "consume_refs", the_repository
);
1322 ret
= store_updated_refs(transport
->url
,
1323 transport
->remote
->name
,
1324 connectivity_checked
,
1326 trace2_region_leave("fetch", "consume_refs", the_repository
);
1329 transport_unlock_pack(transport
);
1333 static int prune_refs(struct refspec
*rs
, struct ref
*ref_map
,
1334 const char *raw_url
)
1336 int url_len
, i
, result
= 0;
1337 struct ref
*ref
, *stale_refs
= get_stale_heads(rs
, ref_map
);
1339 int summary_width
= transport_summary_width(stale_refs
);
1340 const char *dangling_msg
= dry_run
1341 ? _(" (%s will become dangling)")
1342 : _(" (%s has become dangling)");
1345 url
= transport_anonymize_url(raw_url
);
1347 url
= xstrdup("foreign");
1349 url_len
= strlen(url
);
1350 for (i
= url_len
- 1; url
[i
] == '/' && 0 <= i
; i
--)
1354 if (4 < i
&& !strncmp(".git", url
+ i
- 3, 4))
1358 struct string_list refnames
= STRING_LIST_INIT_NODUP
;
1360 for (ref
= stale_refs
; ref
; ref
= ref
->next
)
1361 string_list_append(&refnames
, ref
->name
);
1363 result
= delete_refs("fetch: prune", &refnames
, 0);
1364 string_list_clear(&refnames
, 0);
1367 if (verbosity
>= 0) {
1368 for (ref
= stale_refs
; ref
; ref
= ref
->next
) {
1369 struct strbuf sb
= STRBUF_INIT
;
1371 fprintf(stderr
, _("From %.*s\n"), url_len
, url
);
1374 format_display(&sb
, '-', _("[deleted]"), NULL
,
1375 _("(none)"), prettify_refname(ref
->name
),
1377 fprintf(stderr
, " %s\n",sb
.buf
);
1378 strbuf_release(&sb
);
1379 warn_dangling_symref(stderr
, dangling_msg
, ref
->name
);
1384 free_refs(stale_refs
);
1388 static void check_not_current_branch(struct ref
*ref_map
)
1390 struct branch
*current_branch
= branch_get(NULL
);
1392 if (is_bare_repository() || !current_branch
)
1395 for (; ref_map
; ref_map
= ref_map
->next
)
1396 if (ref_map
->peer_ref
&& !strcmp(current_branch
->refname
,
1397 ref_map
->peer_ref
->name
))
1398 die(_("Refusing to fetch into current branch %s "
1399 "of non-bare repository"), current_branch
->refname
);
1402 static int truncate_fetch_head(void)
1404 const char *filename
= git_path_fetch_head(the_repository
);
1405 FILE *fp
= fopen_for_writing(filename
);
1408 return error_errno(_("cannot open %s"), filename
);
1413 static void set_option(struct transport
*transport
, const char *name
, const char *value
)
1415 int r
= transport_set_option(transport
, name
, value
);
1417 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
1418 name
, value
, transport
->url
);
1420 warning(_("Option \"%s\" is ignored for %s\n"),
1421 name
, transport
->url
);
1425 static int add_oid(const char *refname
, const struct object_id
*oid
, int flags
,
1428 struct oid_array
*oids
= cb_data
;
1430 oid_array_append(oids
, oid
);
1434 static void add_negotiation_tips(struct git_transport_options
*smart_options
)
1436 struct oid_array
*oids
= xcalloc(1, sizeof(*oids
));
1439 for (i
= 0; i
< negotiation_tip
.nr
; i
++) {
1440 const char *s
= negotiation_tip
.items
[i
].string
;
1442 if (!has_glob_specials(s
)) {
1443 struct object_id oid
;
1444 if (get_oid(s
, &oid
))
1445 die(_("%s is not a valid object"), s
);
1446 if (!has_object(the_repository
, &oid
, 0))
1447 die(_("the object %s does not exist"), s
);
1448 oid_array_append(oids
, &oid
);
1452 for_each_glob_ref(add_oid
, s
, oids
);
1453 if (old_nr
== oids
->nr
)
1454 warning("Ignoring --negotiation-tip=%s because it does not match any refs",
1457 smart_options
->negotiation_tips
= oids
;
1460 static struct transport
*prepare_transport(struct remote
*remote
, int deepen
)
1462 struct transport
*transport
;
1464 transport
= transport_get(remote
, NULL
);
1465 transport_set_verbosity(transport
, verbosity
, progress
);
1466 transport
->family
= family
;
1468 set_option(transport
, TRANS_OPT_UPLOADPACK
, upload_pack
);
1470 set_option(transport
, TRANS_OPT_KEEP
, "yes");
1472 set_option(transport
, TRANS_OPT_DEPTH
, depth
);
1473 if (deepen
&& deepen_since
)
1474 set_option(transport
, TRANS_OPT_DEEPEN_SINCE
, deepen_since
);
1475 if (deepen
&& deepen_not
.nr
)
1476 set_option(transport
, TRANS_OPT_DEEPEN_NOT
,
1477 (const char *)&deepen_not
);
1478 if (deepen_relative
)
1479 set_option(transport
, TRANS_OPT_DEEPEN_RELATIVE
, "yes");
1481 set_option(transport
, TRANS_OPT_UPDATE_SHALLOW
, "yes");
1482 if (filter_options
.choice
) {
1484 expand_list_objects_filter_spec(&filter_options
);
1485 set_option(transport
, TRANS_OPT_LIST_OBJECTS_FILTER
, spec
);
1486 set_option(transport
, TRANS_OPT_FROM_PROMISOR
, "1");
1488 if (negotiation_tip
.nr
) {
1489 if (transport
->smart_options
)
1490 add_negotiation_tips(transport
->smart_options
);
1492 warning("Ignoring --negotiation-tip because the protocol does not support it.");
1497 static void backfill_tags(struct transport
*transport
, struct ref
*ref_map
)
1502 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1503 * when remote helper is used (setting it to an empty string
1504 * is not unsetting). We could extend the remote helper
1505 * protocol for that, but for now, just force a new connection
1506 * without deepen-since. Similar story for deepen-not.
1508 cannot_reuse
= transport
->cannot_reuse
||
1509 deepen_since
|| deepen_not
.nr
;
1511 gsecondary
= prepare_transport(transport
->remote
, 0);
1512 transport
= gsecondary
;
1515 transport_set_option(transport
, TRANS_OPT_FOLLOWTAGS
, NULL
);
1516 transport_set_option(transport
, TRANS_OPT_DEPTH
, "0");
1517 transport_set_option(transport
, TRANS_OPT_DEEPEN_RELATIVE
, NULL
);
1518 fetch_and_consume_refs(transport
, ref_map
);
1521 transport_disconnect(gsecondary
);
1526 static int do_fetch(struct transport
*transport
,
1529 struct ref
*ref_map
;
1530 int autotags
= (transport
->remote
->fetch_tags
== 1);
1532 const struct ref
*remote_refs
;
1533 struct transport_ls_refs_options transport_ls_refs_options
=
1534 TRANSPORT_LS_REFS_OPTIONS_INIT
;
1535 int must_list_refs
= 1;
1537 if (tags
== TAGS_DEFAULT
) {
1538 if (transport
->remote
->fetch_tags
== 2)
1540 if (transport
->remote
->fetch_tags
== -1)
1544 /* if not appending, truncate FETCH_HEAD */
1545 if (!append
&& write_fetch_head
) {
1546 retcode
= truncate_fetch_head();
1554 refspec_ref_prefixes(rs
, &transport_ls_refs_options
.ref_prefixes
);
1557 * We can avoid listing refs if all of them are exact
1561 for (i
= 0; i
< rs
->nr
; i
++) {
1562 if (!rs
->items
[i
].exact_sha1
) {
1567 } else if (transport
->remote
&& transport
->remote
->fetch
.nr
)
1568 refspec_ref_prefixes(&transport
->remote
->fetch
,
1569 &transport_ls_refs_options
.ref_prefixes
);
1571 if (tags
== TAGS_SET
|| tags
== TAGS_DEFAULT
) {
1573 if (transport_ls_refs_options
.ref_prefixes
.nr
)
1574 strvec_push(&transport_ls_refs_options
.ref_prefixes
,
1578 if (must_list_refs
) {
1579 trace2_region_enter("fetch", "remote_refs", the_repository
);
1580 remote_refs
= transport_get_remote_refs(transport
,
1581 &transport_ls_refs_options
);
1582 trace2_region_leave("fetch", "remote_refs", the_repository
);
1586 strvec_clear(&transport_ls_refs_options
.ref_prefixes
);
1588 ref_map
= get_ref_map(transport
->remote
, remote_refs
, rs
,
1590 if (!update_head_ok
)
1591 check_not_current_branch(ref_map
);
1593 if (tags
== TAGS_DEFAULT
&& autotags
)
1594 transport_set_option(transport
, TRANS_OPT_FOLLOWTAGS
, "1");
1597 * We only prune based on refspecs specified
1598 * explicitly (via command line or configuration); we
1599 * don't care whether --tags was specified.
1602 prune_refs(rs
, ref_map
, transport
->url
);
1604 prune_refs(&transport
->remote
->fetch
,
1609 if (fetch_and_consume_refs(transport
, ref_map
)) {
1616 struct branch
*branch
= branch_get("HEAD");
1618 struct ref
*source_ref
= NULL
;
1621 * We're setting the upstream configuration for the
1622 * current branch. The relevant upstream is the
1623 * fetched branch that is meant to be merged with the
1624 * current one, i.e. the one fetched to FETCH_HEAD.
1626 * When there are several such branches, consider the
1627 * request ambiguous and err on the safe side by doing
1628 * nothing and just emit a warning.
1630 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
1631 if (!rm
->peer_ref
) {
1633 warning(_("multiple branches detected, incompatible with --set-upstream"));
1641 if (!strcmp(source_ref
->name
, "HEAD") ||
1642 starts_with(source_ref
->name
, "refs/heads/"))
1643 install_branch_config(0,
1645 transport
->remote
->name
,
1647 else if (starts_with(source_ref
->name
, "refs/remotes/"))
1648 warning(_("not setting upstream for a remote remote-tracking branch"));
1649 else if (starts_with(source_ref
->name
, "refs/tags/"))
1650 warning(_("not setting upstream for a remote tag"));
1652 warning(_("unknown branch type"));
1654 warning(_("no source branch found.\n"
1655 "you need to specify exactly one branch with the --set-upstream option."));
1661 /* if neither --no-tags nor --tags was specified, do automated tag
1663 if (tags
== TAGS_DEFAULT
&& autotags
) {
1664 struct ref
**tail
= &ref_map
;
1666 find_non_local_tags(remote_refs
, &ref_map
, &tail
);
1668 backfill_tags(transport
, ref_map
);
1676 static int get_one_remote_for_fetch(struct remote
*remote
, void *priv
)
1678 struct string_list
*list
= priv
;
1679 if (!remote
->skip_default_update
)
1680 string_list_append(list
, remote
->name
);
1684 struct remote_group_data
{
1686 struct string_list
*list
;
1689 static int get_remote_group(const char *key
, const char *value
, void *priv
)
1691 struct remote_group_data
*g
= priv
;
1693 if (skip_prefix(key
, "remotes.", &key
) && !strcmp(key
, g
->name
)) {
1694 /* split list by white space */
1696 size_t wordlen
= strcspn(value
, " \t\n");
1699 string_list_append_nodup(g
->list
,
1700 xstrndup(value
, wordlen
));
1701 value
+= wordlen
+ (value
[wordlen
] != '\0');
1708 static int add_remote_or_group(const char *name
, struct string_list
*list
)
1710 int prev_nr
= list
->nr
;
1711 struct remote_group_data g
;
1712 g
.name
= name
; g
.list
= list
;
1714 git_config(get_remote_group
, &g
);
1715 if (list
->nr
== prev_nr
) {
1716 struct remote
*remote
= remote_get(name
);
1717 if (!remote_is_configured(remote
, 0))
1719 string_list_append(list
, remote
->name
);
1724 static void add_options_to_argv(struct strvec
*argv
)
1727 strvec_push(argv
, "--dry-run");
1729 strvec_push(argv
, prune
? "--prune" : "--no-prune");
1730 if (prune_tags
!= -1)
1731 strvec_push(argv
, prune_tags
? "--prune-tags" : "--no-prune-tags");
1733 strvec_push(argv
, "--update-head-ok");
1735 strvec_push(argv
, "--force");
1737 strvec_push(argv
, "--keep");
1738 if (recurse_submodules
== RECURSE_SUBMODULES_ON
)
1739 strvec_push(argv
, "--recurse-submodules");
1740 else if (recurse_submodules
== RECURSE_SUBMODULES_ON_DEMAND
)
1741 strvec_push(argv
, "--recurse-submodules=on-demand");
1742 if (tags
== TAGS_SET
)
1743 strvec_push(argv
, "--tags");
1744 else if (tags
== TAGS_UNSET
)
1745 strvec_push(argv
, "--no-tags");
1747 strvec_push(argv
, "-v");
1749 strvec_push(argv
, "-v");
1750 else if (verbosity
< 0)
1751 strvec_push(argv
, "-q");
1752 if (family
== TRANSPORT_FAMILY_IPV4
)
1753 strvec_push(argv
, "--ipv4");
1754 else if (family
== TRANSPORT_FAMILY_IPV6
)
1755 strvec_push(argv
, "--ipv6");
1758 /* Fetch multiple remotes in parallel */
1760 struct parallel_fetch_state
{
1762 struct string_list
*remotes
;
1766 static int fetch_next_remote(struct child_process
*cp
, struct strbuf
*out
,
1767 void *cb
, void **task_cb
)
1769 struct parallel_fetch_state
*state
= cb
;
1772 if (state
->next
< 0 || state
->next
>= state
->remotes
->nr
)
1775 remote
= state
->remotes
->items
[state
->next
++].string
;
1778 strvec_pushv(&cp
->args
, state
->argv
);
1779 strvec_push(&cp
->args
, remote
);
1783 printf(_("Fetching %s\n"), remote
);
1788 static int fetch_failed_to_start(struct strbuf
*out
, void *cb
, void *task_cb
)
1790 struct parallel_fetch_state
*state
= cb
;
1791 const char *remote
= task_cb
;
1793 state
->result
= error(_("Could not fetch %s"), remote
);
1798 static int fetch_finished(int result
, struct strbuf
*out
,
1799 void *cb
, void *task_cb
)
1801 struct parallel_fetch_state
*state
= cb
;
1802 const char *remote
= task_cb
;
1805 strbuf_addf(out
, _("could not fetch '%s' (exit code: %d)\n"),
1813 static int fetch_multiple(struct string_list
*list
, int max_children
)
1816 struct strvec argv
= STRVEC_INIT
;
1818 if (!append
&& write_fetch_head
) {
1819 int errcode
= truncate_fetch_head();
1824 strvec_pushl(&argv
, "fetch", "--append", "--no-auto-gc",
1825 "--no-write-commit-graph", NULL
);
1826 add_options_to_argv(&argv
);
1828 if (max_children
!= 1 && list
->nr
!= 1) {
1829 struct parallel_fetch_state state
= { argv
.v
, list
, 0, 0 };
1831 strvec_push(&argv
, "--end-of-options");
1832 result
= run_processes_parallel_tr2(max_children
,
1834 &fetch_failed_to_start
,
1837 "fetch", "parallel/fetch");
1840 result
= state
.result
;
1842 for (i
= 0; i
< list
->nr
; i
++) {
1843 const char *name
= list
->items
[i
].string
;
1844 strvec_push(&argv
, name
);
1846 printf(_("Fetching %s\n"), name
);
1847 if (run_command_v_opt(argv
.v
, RUN_GIT_CMD
)) {
1848 error(_("Could not fetch %s"), name
);
1854 strvec_clear(&argv
);
1859 * Fetching from the promisor remote should use the given filter-spec
1860 * or inherit the default filter-spec from the config.
1862 static inline void fetch_one_setup_partial(struct remote
*remote
)
1865 * Explicit --no-filter argument overrides everything, regardless
1866 * of any prior partial clones and fetches.
1868 if (filter_options
.no_filter
)
1872 * If no prior partial clone/fetch and the current fetch DID NOT
1873 * request a partial-fetch, do a normal fetch.
1875 if (!has_promisor_remote() && !filter_options
.choice
)
1879 * If this is a partial-fetch request, we enable partial on
1880 * this repo if not already enabled and remember the given
1881 * filter-spec as the default for subsequent fetches to this
1882 * remote if there is currently no default filter-spec.
1884 if (filter_options
.choice
) {
1885 partial_clone_register(remote
->name
, &filter_options
);
1890 * Do a partial-fetch from the promisor remote using either the
1891 * explicitly given filter-spec or inherit the filter-spec from
1894 if (!filter_options
.choice
)
1895 partial_clone_get_default_filter_spec(&filter_options
, remote
->name
);
1899 static int fetch_one(struct remote
*remote
, int argc
, const char **argv
,
1900 int prune_tags_ok
, int use_stdin_refspecs
)
1902 struct refspec rs
= REFSPEC_INIT_FETCH
;
1905 int maybe_prune_tags
;
1906 int remote_via_config
= remote_is_configured(remote
, 0);
1909 die(_("No remote repository specified. Please, specify either a URL or a\n"
1910 "remote name from which new revisions should be fetched."));
1912 gtransport
= prepare_transport(remote
, 1);
1915 /* no command line request */
1916 if (0 <= remote
->prune
)
1917 prune
= remote
->prune
;
1918 else if (0 <= fetch_prune_config
)
1919 prune
= fetch_prune_config
;
1921 prune
= PRUNE_BY_DEFAULT
;
1924 if (prune_tags
< 0) {
1925 /* no command line request */
1926 if (0 <= remote
->prune_tags
)
1927 prune_tags
= remote
->prune_tags
;
1928 else if (0 <= fetch_prune_tags_config
)
1929 prune_tags
= fetch_prune_tags_config
;
1931 prune_tags
= PRUNE_TAGS_BY_DEFAULT
;
1934 maybe_prune_tags
= prune_tags_ok
&& prune_tags
;
1935 if (maybe_prune_tags
&& remote_via_config
)
1936 refspec_append(&remote
->fetch
, TAG_REFSPEC
);
1938 if (maybe_prune_tags
&& (argc
|| !remote_via_config
))
1939 refspec_append(&rs
, TAG_REFSPEC
);
1941 for (i
= 0; i
< argc
; i
++) {
1942 if (!strcmp(argv
[i
], "tag")) {
1945 die(_("You need to specify a tag name."));
1947 refspec_appendf(&rs
, "refs/tags/%s:refs/tags/%s",
1950 refspec_append(&rs
, argv
[i
]);
1954 if (use_stdin_refspecs
) {
1955 struct strbuf line
= STRBUF_INIT
;
1956 while (strbuf_getline_lf(&line
, stdin
) != EOF
)
1957 refspec_append(&rs
, line
.buf
);
1958 strbuf_release(&line
);
1961 if (server_options
.nr
)
1962 gtransport
->server_options
= &server_options
;
1964 sigchain_push_common(unlock_pack_on_signal
);
1965 atexit(unlock_pack
);
1966 sigchain_push(SIGPIPE
, SIG_IGN
);
1967 exit_code
= do_fetch(gtransport
, &rs
);
1968 sigchain_pop(SIGPIPE
);
1970 transport_disconnect(gtransport
);
1975 int cmd_fetch(int argc
, const char **argv
, const char *prefix
)
1978 struct string_list list
= STRING_LIST_INIT_DUP
;
1979 struct remote
*remote
= NULL
;
1981 int prune_tags_ok
= 1;
1983 packet_trace_identity("fetch");
1985 /* Record the command line for the reflog */
1986 strbuf_addstr(&default_rla
, "fetch");
1987 for (i
= 1; i
< argc
; i
++) {
1988 /* This handles non-URLs gracefully */
1989 char *anon
= transport_anonymize_url(argv
[i
]);
1991 strbuf_addf(&default_rla
, " %s", anon
);
1995 git_config(git_fetch_config
, NULL
);
1997 argc
= parse_options(argc
, argv
, prefix
,
1998 builtin_fetch_options
, builtin_fetch_usage
, 0);
1999 if (recurse_submodules
!= RECURSE_SUBMODULES_OFF
) {
2000 int *sfjc
= submodule_fetch_jobs_config
== -1
2001 ? &submodule_fetch_jobs_config
: NULL
;
2002 int *rs
= recurse_submodules
== RECURSE_SUBMODULES_DEFAULT
2003 ? &recurse_submodules
: NULL
;
2005 fetch_config_from_gitmodules(sfjc
, rs
);
2008 if (negotiate_only
&& !negotiation_tip
.nr
)
2009 die(_("--negotiate-only needs one or more --negotiate-tip=*"));
2011 if (deepen_relative
) {
2012 if (deepen_relative
< 0)
2013 die(_("Negative depth in --deepen is not supported"));
2015 die(_("--deepen and --depth are mutually exclusive"));
2016 depth
= xstrfmt("%d", deepen_relative
);
2020 die(_("--depth and --unshallow cannot be used together"));
2021 else if (!is_repository_shallow(the_repository
))
2022 die(_("--unshallow on a complete repository does not make sense"));
2024 depth
= xstrfmt("%d", INFINITE_DEPTH
);
2027 /* no need to be strict, transport_set_option() will validate it again */
2028 if (depth
&& atoi(depth
) < 1)
2029 die(_("depth %s is not a positive number"), depth
);
2030 if (depth
|| deepen_since
|| deepen_not
.nr
)
2033 /* FETCH_HEAD never gets updated in --dry-run mode */
2035 write_fetch_head
= 0;
2039 die(_("fetch --all does not take a repository argument"));
2041 die(_("fetch --all does not make sense with refspecs"));
2042 (void) for_each_remote(get_one_remote_for_fetch
, &list
);
2043 } else if (argc
== 0) {
2044 /* No arguments -- use default remote */
2045 remote
= remote_get(NULL
);
2046 } else if (multiple
) {
2047 /* All arguments are assumed to be remotes or groups */
2048 for (i
= 0; i
< argc
; i
++)
2049 if (!add_remote_or_group(argv
[i
], &list
))
2050 die(_("No such remote or remote group: %s"), argv
[i
]);
2052 /* Single remote or group */
2053 (void) add_remote_or_group(argv
[0], &list
);
2055 /* More than one remote */
2057 die(_("Fetching a group and specifying refspecs does not make sense"));
2059 /* Zero or one remotes */
2060 remote
= remote_get(argv
[0]);
2061 prune_tags_ok
= (argc
== 1);
2067 if (negotiate_only
) {
2068 struct oidset acked_commits
= OIDSET_INIT
;
2069 struct oidset_iter iter
;
2070 const struct object_id
*oid
;
2073 die(_("must supply remote when using --negotiate-only"));
2074 gtransport
= prepare_transport(remote
, 1);
2075 if (gtransport
->smart_options
) {
2076 gtransport
->smart_options
->acked_commits
= &acked_commits
;
2078 warning(_("Protocol does not support --negotiate-only, exiting."));
2081 if (server_options
.nr
)
2082 gtransport
->server_options
= &server_options
;
2083 result
= transport_fetch_refs(gtransport
, NULL
);
2085 oidset_iter_init(&acked_commits
, &iter
);
2086 while ((oid
= oidset_iter_next(&iter
)))
2087 printf("%s\n", oid_to_hex(oid
));
2088 oidset_clear(&acked_commits
);
2089 } else if (remote
) {
2090 if (filter_options
.choice
|| has_promisor_remote())
2091 fetch_one_setup_partial(remote
);
2092 result
= fetch_one(remote
, argc
, argv
, prune_tags_ok
, stdin_refspecs
);
2094 int max_children
= max_jobs
;
2096 if (filter_options
.choice
)
2097 die(_("--filter can only be used with the remote "
2098 "configured in extensions.partialclone"));
2101 die(_("--atomic can only be used when fetching "
2102 "from one remote"));
2105 die(_("--stdin can only be used when fetching "
2106 "from one remote"));
2108 if (max_children
< 0)
2109 max_children
= fetch_parallel_config
;
2111 /* TODO should this also die if we have a previous partial-clone? */
2112 result
= fetch_multiple(&list
, max_children
);
2115 if (!result
&& (recurse_submodules
!= RECURSE_SUBMODULES_OFF
)) {
2116 struct strvec options
= STRVEC_INIT
;
2117 int max_children
= max_jobs
;
2119 if (max_children
< 0)
2120 max_children
= submodule_fetch_jobs_config
;
2121 if (max_children
< 0)
2122 max_children
= fetch_parallel_config
;
2124 add_options_to_argv(&options
);
2125 result
= fetch_populated_submodules(the_repository
,
2129 recurse_submodules_default
,
2132 strvec_clear(&options
);
2135 string_list_clear(&list
, 0);
2137 prepare_repo_settings(the_repository
);
2138 if (fetch_write_commit_graph
> 0 ||
2139 (fetch_write_commit_graph
< 0 &&
2140 the_repository
->settings
.fetch_write_commit_graph
)) {
2141 int commit_graph_flags
= COMMIT_GRAPH_WRITE_SPLIT
;
2144 commit_graph_flags
|= COMMIT_GRAPH_WRITE_PROGRESS
;
2146 write_commit_graph_reachable(the_repository
->objects
->odb
,
2152 run_auto_maintenance(verbosity
< 0);