8 #include "string-list.h"
10 #include "transport.h"
11 #include "run-command.h"
12 #include "parse-options.h"
14 #include "submodule-config.h"
15 #include "submodule.h"
16 #include "connected.h"
17 #include "argv-array.h"
20 static const char * const builtin_fetch_usage
[] = {
21 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
22 N_("git fetch [<options>] <group>"),
23 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
24 N_("git fetch --all [<options>]"),
34 static int fetch_prune_config
= -1; /* unspecified */
35 static int prune
= -1; /* unspecified */
36 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
38 static int all
, append
, dry_run
, force
, keep
, multiple
, update_head_ok
, verbosity
, deepen_relative
;
39 static int progress
= -1, recurse_submodules
= RECURSE_SUBMODULES_DEFAULT
;
40 static int tags
= TAGS_DEFAULT
, unshallow
, update_shallow
, deepen
;
41 static int max_children
= -1;
42 static enum transport_family family
;
43 static const char *depth
;
44 static const char *deepen_since
;
45 static const char *upload_pack
;
46 static struct string_list deepen_not
= STRING_LIST_INIT_NODUP
;
47 static struct strbuf default_rla
= STRBUF_INIT
;
48 static struct transport
*gtransport
;
49 static struct transport
*gsecondary
;
50 static const char *submodule_prefix
= "";
51 static const char *recurse_submodules_default
;
52 static int shown_url
= 0;
53 static int refmap_alloc
, refmap_nr
;
54 static const char **refmap_array
;
56 static int option_parse_recurse_submodules(const struct option
*opt
,
57 const char *arg
, int unset
)
60 recurse_submodules
= RECURSE_SUBMODULES_OFF
;
63 recurse_submodules
= parse_fetch_recurse_submodules_arg(opt
->long_name
, arg
);
65 recurse_submodules
= RECURSE_SUBMODULES_ON
;
70 static int git_fetch_config(const char *k
, const char *v
, void *cb
)
72 if (!strcmp(k
, "fetch.prune")) {
73 fetch_prune_config
= git_config_bool(k
, v
);
76 return git_default_config(k
, v
, cb
);
79 static int parse_refmap_arg(const struct option
*opt
, const char *arg
, int unset
)
81 ALLOC_GROW(refmap_array
, refmap_nr
+ 1, refmap_alloc
);
84 * "git fetch --refmap='' origin foo"
85 * can be used to tell the command not to store anywhere
88 refmap_array
[refmap_nr
++] = arg
;
92 static struct option builtin_fetch_options
[] = {
93 OPT__VERBOSITY(&verbosity
),
94 OPT_BOOL(0, "all", &all
,
95 N_("fetch from all remotes")),
96 OPT_BOOL('a', "append", &append
,
97 N_("append to .git/FETCH_HEAD instead of overwriting")),
98 OPT_STRING(0, "upload-pack", &upload_pack
, N_("path"),
99 N_("path to upload pack on remote end")),
100 OPT__FORCE(&force
, N_("force overwrite of local branch")),
101 OPT_BOOL('m', "multiple", &multiple
,
102 N_("fetch from multiple remotes")),
103 OPT_SET_INT('t', "tags", &tags
,
104 N_("fetch all tags and associated objects"), TAGS_SET
),
105 OPT_SET_INT('n', NULL
, &tags
,
106 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET
),
107 OPT_INTEGER('j', "jobs", &max_children
,
108 N_("number of submodules fetched in parallel")),
109 OPT_BOOL('p', "prune", &prune
,
110 N_("prune remote-tracking branches no longer on remote")),
111 { OPTION_CALLBACK
, 0, "recurse-submodules", NULL
, N_("on-demand"),
112 N_("control recursive fetching of submodules"),
113 PARSE_OPT_OPTARG
, option_parse_recurse_submodules
},
114 OPT_BOOL(0, "dry-run", &dry_run
,
116 OPT_BOOL('k', "keep", &keep
, N_("keep downloaded pack")),
117 OPT_BOOL('u', "update-head-ok", &update_head_ok
,
118 N_("allow updating of HEAD ref")),
119 OPT_BOOL(0, "progress", &progress
, N_("force progress reporting")),
120 OPT_STRING(0, "depth", &depth
, N_("depth"),
121 N_("deepen history of shallow clone")),
122 OPT_STRING(0, "shallow-since", &deepen_since
, N_("time"),
123 N_("deepen history of shallow repository based on time")),
124 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not
, N_("revision"),
125 N_("deepen history of shallow clone, excluding rev")),
126 OPT_INTEGER(0, "deepen", &deepen_relative
,
127 N_("deepen history of shallow clone")),
128 { OPTION_SET_INT
, 0, "unshallow", &unshallow
, NULL
,
129 N_("convert to a complete repository"),
130 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
, NULL
, 1 },
131 { OPTION_STRING
, 0, "submodule-prefix", &submodule_prefix
, N_("dir"),
132 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN
},
133 { OPTION_STRING
, 0, "recurse-submodules-default",
134 &recurse_submodules_default
, NULL
,
135 N_("default mode for recursion"), PARSE_OPT_HIDDEN
},
136 OPT_BOOL(0, "update-shallow", &update_shallow
,
137 N_("accept refs that update .git/shallow")),
138 { OPTION_CALLBACK
, 0, "refmap", NULL
, N_("refmap"),
139 N_("specify fetch refmap"), PARSE_OPT_NONEG
, parse_refmap_arg
},
140 OPT_SET_INT('4', "ipv4", &family
, N_("use IPv4 addresses only"),
141 TRANSPORT_FAMILY_IPV4
),
142 OPT_SET_INT('6', "ipv6", &family
, N_("use IPv6 addresses only"),
143 TRANSPORT_FAMILY_IPV6
),
147 static void unlock_pack(void)
150 transport_unlock_pack(gtransport
);
152 transport_unlock_pack(gsecondary
);
155 static void unlock_pack_on_signal(int signo
)
162 static void add_merge_config(struct ref
**head
,
163 const struct ref
*remote_refs
,
164 struct branch
*branch
,
169 for (i
= 0; i
< branch
->merge_nr
; i
++) {
170 struct ref
*rm
, **old_tail
= *tail
;
171 struct refspec refspec
;
173 for (rm
= *head
; rm
; rm
= rm
->next
) {
174 if (branch_merge_matches(branch
, i
, rm
->name
)) {
175 rm
->fetch_head_status
= FETCH_HEAD_MERGE
;
183 * Not fetched to a remote-tracking branch? We need to fetch
184 * it anyway to allow this branch's "branch.$name.merge"
185 * to be honored by 'git pull', but we do not have to
186 * fail if branch.$name.merge is misconfigured to point
187 * at a nonexisting branch. If we were indeed called by
188 * 'git pull', it will notice the misconfiguration because
189 * there is no entry in the resulting FETCH_HEAD marked
192 memset(&refspec
, 0, sizeof(refspec
));
193 refspec
.src
= branch
->merge
[i
]->src
;
194 get_fetch_map(remote_refs
, &refspec
, tail
, 1);
195 for (rm
= *old_tail
; rm
; rm
= rm
->next
)
196 rm
->fetch_head_status
= FETCH_HEAD_MERGE
;
200 static int add_existing(const char *refname
, const struct object_id
*oid
,
201 int flag
, void *cbdata
)
203 struct string_list
*list
= (struct string_list
*)cbdata
;
204 struct string_list_item
*item
= string_list_insert(list
, refname
);
205 struct object_id
*old_oid
= xmalloc(sizeof(*old_oid
));
207 oidcpy(old_oid
, oid
);
208 item
->util
= old_oid
;
212 static int will_fetch(struct ref
**head
, const unsigned char *sha1
)
214 struct ref
*rm
= *head
;
216 if (!hashcmp(rm
->old_oid
.hash
, sha1
))
223 static void find_non_local_tags(struct transport
*transport
,
227 struct string_list existing_refs
= STRING_LIST_INIT_DUP
;
228 struct string_list remote_refs
= STRING_LIST_INIT_NODUP
;
229 const struct ref
*ref
;
230 struct string_list_item
*item
= NULL
;
232 for_each_ref(add_existing
, &existing_refs
);
233 for (ref
= transport_get_remote_refs(transport
); ref
; ref
= ref
->next
) {
234 if (!starts_with(ref
->name
, "refs/tags/"))
238 * The peeled ref always follows the matching base
239 * ref, so if we see a peeled ref that we don't want
240 * to fetch then we can mark the ref entry in the list
241 * as one to ignore by setting util to NULL.
243 if (ends_with(ref
->name
, "^{}")) {
245 !has_object_file_with_flags(&ref
->old_oid
, HAS_SHA1_QUICK
) &&
246 !will_fetch(head
, ref
->old_oid
.hash
) &&
247 !has_sha1_file_with_flags(item
->util
, HAS_SHA1_QUICK
) &&
248 !will_fetch(head
, item
->util
))
255 * If item is non-NULL here, then we previously saw a
256 * ref not followed by a peeled reference, so we need
257 * to check if it is a lightweight tag that we want to
261 !has_sha1_file_with_flags(item
->util
, HAS_SHA1_QUICK
) &&
262 !will_fetch(head
, item
->util
))
267 /* skip duplicates and refs that we already have */
268 if (string_list_has_string(&remote_refs
, ref
->name
) ||
269 string_list_has_string(&existing_refs
, ref
->name
))
272 item
= string_list_insert(&remote_refs
, ref
->name
);
273 item
->util
= (void *)&ref
->old_oid
;
275 string_list_clear(&existing_refs
, 1);
278 * We may have a final lightweight tag that needs to be
279 * checked to see if it needs fetching.
282 !has_sha1_file_with_flags(item
->util
, HAS_SHA1_QUICK
) &&
283 !will_fetch(head
, item
->util
))
287 * For all the tags in the remote_refs string list,
288 * add them to the list of refs to be fetched
290 for_each_string_list_item(item
, &remote_refs
) {
291 /* Unless we have already decided to ignore this item... */
294 struct ref
*rm
= alloc_ref(item
->string
);
295 rm
->peer_ref
= alloc_ref(item
->string
);
296 oidcpy(&rm
->old_oid
, item
->util
);
302 string_list_clear(&remote_refs
, 0);
305 static struct ref
*get_ref_map(struct transport
*transport
,
306 struct refspec
*refspecs
, int refspec_count
,
307 int tags
, int *autotags
)
311 struct ref
*ref_map
= NULL
;
312 struct ref
**tail
= &ref_map
;
314 /* opportunistically-updated references: */
315 struct ref
*orefs
= NULL
, **oref_tail
= &orefs
;
317 const struct ref
*remote_refs
= transport_get_remote_refs(transport
);
320 struct refspec
*fetch_refspec
;
321 int fetch_refspec_nr
;
323 for (i
= 0; i
< refspec_count
; i
++) {
324 get_fetch_map(remote_refs
, &refspecs
[i
], &tail
, 0);
325 if (refspecs
[i
].dst
&& refspecs
[i
].dst
[0])
328 /* Merge everything on the command line (but not --tags) */
329 for (rm
= ref_map
; rm
; rm
= rm
->next
)
330 rm
->fetch_head_status
= FETCH_HEAD_MERGE
;
333 * For any refs that we happen to be fetching via
334 * command-line arguments, the destination ref might
335 * have been missing or have been different than the
336 * remote-tracking ref that would be derived from the
337 * configured refspec. In these cases, we want to
338 * take the opportunity to update their configured
339 * remote-tracking reference. However, we do not want
340 * to mention these entries in FETCH_HEAD at all, as
341 * they would simply be duplicates of existing
342 * entries, so we set them FETCH_HEAD_IGNORE below.
344 * We compute these entries now, based only on the
345 * refspecs specified on the command line. But we add
346 * them to the list following the refspecs resulting
347 * from the tags option so that one of the latter,
348 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
349 * by ref_remove_duplicates() in favor of one of these
350 * opportunistic entries with FETCH_HEAD_IGNORE.
353 fetch_refspec
= parse_fetch_refspec(refmap_nr
, refmap_array
);
354 fetch_refspec_nr
= refmap_nr
;
356 fetch_refspec
= transport
->remote
->fetch
;
357 fetch_refspec_nr
= transport
->remote
->fetch_refspec_nr
;
360 for (i
= 0; i
< fetch_refspec_nr
; i
++)
361 get_fetch_map(ref_map
, &fetch_refspec
[i
], &oref_tail
, 1);
362 } else if (refmap_array
) {
363 die("--refmap option is only meaningful with command-line refspec(s).");
365 /* Use the defaults */
366 struct remote
*remote
= transport
->remote
;
367 struct branch
*branch
= branch_get(NULL
);
368 int has_merge
= branch_has_merge_config(branch
);
370 (remote
->fetch_refspec_nr
||
371 /* Note: has_merge implies non-NULL branch->remote_name */
372 (has_merge
&& !strcmp(branch
->remote_name
, remote
->name
)))) {
373 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++) {
374 get_fetch_map(remote_refs
, &remote
->fetch
[i
], &tail
, 0);
375 if (remote
->fetch
[i
].dst
&&
376 remote
->fetch
[i
].dst
[0])
378 if (!i
&& !has_merge
&& ref_map
&&
379 !remote
->fetch
[0].pattern
)
380 ref_map
->fetch_head_status
= FETCH_HEAD_MERGE
;
383 * if the remote we're fetching from is the same
384 * as given in branch.<name>.remote, we add the
385 * ref given in branch.<name>.merge, too.
387 * Note: has_merge implies non-NULL branch->remote_name
390 !strcmp(branch
->remote_name
, remote
->name
))
391 add_merge_config(&ref_map
, remote_refs
, branch
, &tail
);
393 ref_map
= get_remote_ref(remote_refs
, "HEAD");
395 die(_("Couldn't find remote ref HEAD"));
396 ref_map
->fetch_head_status
= FETCH_HEAD_MERGE
;
397 tail
= &ref_map
->next
;
401 if (tags
== TAGS_SET
)
402 /* also fetch all tags */
403 get_fetch_map(remote_refs
, tag_refspec
, &tail
, 0);
404 else if (tags
== TAGS_DEFAULT
&& *autotags
)
405 find_non_local_tags(transport
, &ref_map
, &tail
);
407 /* Now append any refs to be updated opportunistically: */
409 for (rm
= orefs
; rm
; rm
= rm
->next
) {
410 rm
->fetch_head_status
= FETCH_HEAD_IGNORE
;
414 return ref_remove_duplicates(ref_map
);
417 #define STORE_REF_ERROR_OTHER 1
418 #define STORE_REF_ERROR_DF_CONFLICT 2
420 static int s_update_ref(const char *action
,
425 char *rla
= getenv("GIT_REFLOG_ACTION");
426 struct ref_transaction
*transaction
;
427 struct strbuf err
= STRBUF_INIT
;
428 int ret
, df_conflict
= 0;
433 rla
= default_rla
.buf
;
434 snprintf(msg
, sizeof(msg
), "%s: %s", rla
, action
);
436 transaction
= ref_transaction_begin(&err
);
438 ref_transaction_update(transaction
, ref
->name
,
440 check_old
? ref
->old_oid
.hash
: NULL
,
444 ret
= ref_transaction_commit(transaction
, &err
);
446 df_conflict
= (ret
== TRANSACTION_NAME_CONFLICT
);
450 ref_transaction_free(transaction
);
451 strbuf_release(&err
);
454 ref_transaction_free(transaction
);
455 error("%s", err
.buf
);
456 strbuf_release(&err
);
457 return df_conflict
? STORE_REF_ERROR_DF_CONFLICT
458 : STORE_REF_ERROR_OTHER
;
461 static int refcol_width
= 10;
462 static int compact_format
;
464 static void adjust_refcol_width(const struct ref
*ref
)
466 int max
, rlen
, llen
, len
;
468 /* uptodate lines are only shown on high verbosity level */
469 if (!verbosity
&& !oidcmp(&ref
->peer_ref
->old_oid
, &ref
->old_oid
))
472 max
= term_columns();
473 rlen
= utf8_strwidth(prettify_refname(ref
->name
));
475 llen
= utf8_strwidth(prettify_refname(ref
->peer_ref
->name
));
478 * rough estimation to see if the output line is too long and
479 * should not be counted (we can't do precise calculation
480 * anyway because we don't know if the error explanation part
481 * will be printed in update_local_ref)
483 if (compact_format
) {
487 len
= 21 /* flag and summary */ + rlen
+ 4 /* -> */ + llen
;
492 * Not precise calculation for compact mode because '*' can
493 * appear on the left hand side of '->' and shrink the column
496 if (refcol_width
< rlen
)
500 static void prepare_format_display(struct ref
*ref_map
)
503 const char *format
= "full";
505 git_config_get_string_const("fetch.output", &format
);
506 if (!strcasecmp(format
, "full"))
508 else if (!strcasecmp(format
, "compact"))
511 die(_("configuration fetch.output contains invalid value %s"),
514 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
515 if (rm
->status
== REF_STATUS_REJECT_SHALLOW
||
517 !strcmp(rm
->name
, "HEAD"))
520 adjust_refcol_width(rm
);
524 static void print_remote_to_local(struct strbuf
*display
,
525 const char *remote
, const char *local
)
527 strbuf_addf(display
, "%-*s -> %s", refcol_width
, remote
, local
);
530 static int find_and_replace(struct strbuf
*haystack
,
532 const char *placeholder
)
534 const char *p
= strstr(haystack
->buf
, needle
);
540 if (p
> haystack
->buf
&& p
[-1] != '/')
544 nlen
= strlen(needle
);
545 if (plen
> nlen
&& p
[nlen
] != '/')
548 strbuf_splice(haystack
, p
- haystack
->buf
, nlen
,
549 placeholder
, strlen(placeholder
));
553 static void print_compact(struct strbuf
*display
,
554 const char *remote
, const char *local
)
556 struct strbuf r
= STRBUF_INIT
;
557 struct strbuf l
= STRBUF_INIT
;
559 if (!strcmp(remote
, local
)) {
560 strbuf_addf(display
, "%-*s -> *", refcol_width
, remote
);
564 strbuf_addstr(&r
, remote
);
565 strbuf_addstr(&l
, local
);
567 if (!find_and_replace(&r
, local
, "*"))
568 find_and_replace(&l
, remote
, "*");
569 print_remote_to_local(display
, r
.buf
, l
.buf
);
575 static void format_display(struct strbuf
*display
, char code
,
576 const char *summary
, const char *error
,
577 const char *remote
, const char *local
,
580 int width
= (summary_width
+ strlen(summary
) - gettext_width(summary
));
582 strbuf_addf(display
, "%c %-*s ", code
, width
, summary
);
584 print_remote_to_local(display
, remote
, local
);
586 print_compact(display
, remote
, local
);
588 strbuf_addf(display
, " (%s)", error
);
591 static int update_local_ref(struct ref
*ref
,
593 const struct ref
*remote_ref
,
594 struct strbuf
*display
,
597 struct commit
*current
= NULL
, *updated
;
598 enum object_type type
;
599 struct branch
*current_branch
= branch_get(NULL
);
600 const char *pretty_ref
= prettify_refname(ref
->name
);
602 type
= sha1_object_info(ref
->new_oid
.hash
, NULL
);
604 die(_("object %s not found"), oid_to_hex(&ref
->new_oid
));
606 if (!oidcmp(&ref
->old_oid
, &ref
->new_oid
)) {
608 format_display(display
, '=', _("[up to date]"), NULL
,
609 remote
, pretty_ref
, summary_width
);
613 if (current_branch
&&
614 !strcmp(ref
->name
, current_branch
->name
) &&
615 !(update_head_ok
|| is_bare_repository()) &&
616 !is_null_oid(&ref
->old_oid
)) {
618 * If this is the head, and it's not okay to update
619 * the head, and the old value of the head isn't empty...
621 format_display(display
, '!', _("[rejected]"),
622 _("can't fetch in current branch"),
623 remote
, pretty_ref
, summary_width
);
627 if (!is_null_oid(&ref
->old_oid
) &&
628 starts_with(ref
->name
, "refs/tags/")) {
630 r
= s_update_ref("updating tag", ref
, 0);
631 format_display(display
, r
? '!' : 't', _("[tag update]"),
632 r
? _("unable to update local ref") : NULL
,
633 remote
, pretty_ref
, summary_width
);
637 current
= lookup_commit_reference_gently(ref
->old_oid
.hash
, 1);
638 updated
= lookup_commit_reference_gently(ref
->new_oid
.hash
, 1);
639 if (!current
|| !updated
) {
644 * Nicely describe the new ref we're fetching.
645 * Base this on the remote's ref name, as it's
646 * more likely to follow a standard layout.
648 const char *name
= remote_ref
? remote_ref
->name
: "";
649 if (starts_with(name
, "refs/tags/")) {
651 what
= _("[new tag]");
652 } else if (starts_with(name
, "refs/heads/")) {
653 msg
= "storing head";
654 what
= _("[new branch]");
657 what
= _("[new ref]");
660 if ((recurse_submodules
!= RECURSE_SUBMODULES_OFF
) &&
661 (recurse_submodules
!= RECURSE_SUBMODULES_ON
))
662 check_for_new_submodule_commits(ref
->new_oid
.hash
);
663 r
= s_update_ref(msg
, ref
, 0);
664 format_display(display
, r
? '!' : '*', what
,
665 r
? _("unable to update local ref") : NULL
,
666 remote
, pretty_ref
, summary_width
);
670 if (in_merge_bases(current
, updated
)) {
671 struct strbuf quickref
= STRBUF_INIT
;
673 strbuf_add_unique_abbrev(&quickref
, current
->object
.oid
.hash
, DEFAULT_ABBREV
);
674 strbuf_addstr(&quickref
, "..");
675 strbuf_add_unique_abbrev(&quickref
, ref
->new_oid
.hash
, DEFAULT_ABBREV
);
676 if ((recurse_submodules
!= RECURSE_SUBMODULES_OFF
) &&
677 (recurse_submodules
!= RECURSE_SUBMODULES_ON
))
678 check_for_new_submodule_commits(ref
->new_oid
.hash
);
679 r
= s_update_ref("fast-forward", ref
, 1);
680 format_display(display
, r
? '!' : ' ', quickref
.buf
,
681 r
? _("unable to update local ref") : NULL
,
682 remote
, pretty_ref
, summary_width
);
683 strbuf_release(&quickref
);
685 } else if (force
|| ref
->force
) {
686 struct strbuf quickref
= STRBUF_INIT
;
688 strbuf_add_unique_abbrev(&quickref
, current
->object
.oid
.hash
, DEFAULT_ABBREV
);
689 strbuf_addstr(&quickref
, "...");
690 strbuf_add_unique_abbrev(&quickref
, ref
->new_oid
.hash
, DEFAULT_ABBREV
);
691 if ((recurse_submodules
!= RECURSE_SUBMODULES_OFF
) &&
692 (recurse_submodules
!= RECURSE_SUBMODULES_ON
))
693 check_for_new_submodule_commits(ref
->new_oid
.hash
);
694 r
= s_update_ref("forced-update", ref
, 1);
695 format_display(display
, r
? '!' : '+', quickref
.buf
,
696 r
? _("unable to update local ref") : _("forced update"),
697 remote
, pretty_ref
, summary_width
);
698 strbuf_release(&quickref
);
701 format_display(display
, '!', _("[rejected]"), _("non-fast-forward"),
702 remote
, pretty_ref
, summary_width
);
707 static int iterate_ref_map(void *cb_data
, unsigned char sha1
[20])
709 struct ref
**rm
= cb_data
;
710 struct ref
*ref
= *rm
;
712 while (ref
&& ref
->status
== REF_STATUS_REJECT_SHALLOW
)
715 return -1; /* end of the list */
717 hashcpy(sha1
, ref
->old_oid
.hash
);
721 static int store_updated_refs(const char *raw_url
, const char *remote_name
,
725 struct commit
*commit
;
726 int url_len
, i
, rc
= 0;
727 struct strbuf note
= STRBUF_INIT
;
728 const char *what
, *kind
;
731 const char *filename
= dry_run
? "/dev/null" : git_path_fetch_head();
733 int summary_width
= transport_summary_width(ref_map
);
735 fp
= fopen(filename
, "a");
737 return error_errno(_("cannot open %s"), filename
);
740 url
= transport_anonymize_url(raw_url
);
742 url
= xstrdup("foreign");
745 if (check_connected(iterate_ref_map
, &rm
, NULL
)) {
746 rc
= error(_("%s did not send all necessary objects\n"), url
);
750 prepare_format_display(ref_map
);
753 * We do a pass for each fetch_head_status type in their enum order, so
754 * merged entries are written before not-for-merge. That lets readers
755 * use FETCH_HEAD as a refname to refer to the ref to be merged.
757 for (want_status
= FETCH_HEAD_MERGE
;
758 want_status
<= FETCH_HEAD_IGNORE
;
760 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
761 struct ref
*ref
= NULL
;
762 const char *merge_status_marker
= "";
764 if (rm
->status
== REF_STATUS_REJECT_SHALLOW
) {
765 if (want_status
== FETCH_HEAD_MERGE
)
766 warning(_("reject %s because shallow roots are not allowed to be updated"),
767 rm
->peer_ref
? rm
->peer_ref
->name
: rm
->name
);
771 commit
= lookup_commit_reference_gently(rm
->old_oid
.hash
, 1);
773 rm
->fetch_head_status
= FETCH_HEAD_NOT_FOR_MERGE
;
775 if (rm
->fetch_head_status
!= want_status
)
779 ref
= alloc_ref(rm
->peer_ref
->name
);
780 oidcpy(&ref
->old_oid
, &rm
->peer_ref
->old_oid
);
781 oidcpy(&ref
->new_oid
, &rm
->old_oid
);
782 ref
->force
= rm
->peer_ref
->force
;
786 if (!strcmp(rm
->name
, "HEAD")) {
790 else if (starts_with(rm
->name
, "refs/heads/")) {
792 what
= rm
->name
+ 11;
794 else if (starts_with(rm
->name
, "refs/tags/")) {
796 what
= rm
->name
+ 10;
798 else if (starts_with(rm
->name
, "refs/remotes/")) {
799 kind
= "remote-tracking branch";
800 what
= rm
->name
+ 13;
807 url_len
= strlen(url
);
808 for (i
= url_len
- 1; url
[i
] == '/' && 0 <= i
; i
--)
811 if (4 < i
&& !strncmp(".git", url
+ i
- 3, 4))
817 strbuf_addf(¬e
, "%s ", kind
);
818 strbuf_addf(¬e
, "'%s' of ", what
);
820 switch (rm
->fetch_head_status
) {
821 case FETCH_HEAD_NOT_FOR_MERGE
:
822 merge_status_marker
= "not-for-merge";
824 case FETCH_HEAD_MERGE
:
825 fprintf(fp
, "%s\t%s\t%s",
826 oid_to_hex(&rm
->old_oid
),
829 for (i
= 0; i
< url_len
; ++i
)
837 /* do not write anything to FETCH_HEAD */
843 rc
|= update_local_ref(ref
, what
, rm
, ¬e
,
847 format_display(¬e
, '*',
848 *kind
? kind
: "branch", NULL
,
849 *what
? what
: "HEAD",
850 "FETCH_HEAD", summary_width
);
852 if (verbosity
>= 0 && !shown_url
) {
853 fprintf(stderr
, _("From %.*s\n"),
858 fprintf(stderr
, " %s\n", note
.buf
);
863 if (rc
& STORE_REF_ERROR_DF_CONFLICT
)
864 error(_("some local refs could not be updated; try running\n"
865 " 'git remote prune %s' to remove any old, conflicting "
866 "branches"), remote_name
);
869 strbuf_release(¬e
);
876 * We would want to bypass the object transfer altogether if
877 * everything we are going to fetch already exists and is connected
880 static int quickfetch(struct ref
*ref_map
)
882 struct ref
*rm
= ref_map
;
883 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
886 * If we are deepening a shallow clone we already have these
887 * objects reachable. Running rev-list here will return with
888 * a good (0) exit status and we'll bypass the fetch that we
889 * really need to perform. Claiming failure now will ensure
890 * we perform the network exchange to deepen our history.
895 return check_connected(iterate_ref_map
, &rm
, &opt
);
898 static int fetch_refs(struct transport
*transport
, struct ref
*ref_map
)
900 int ret
= quickfetch(ref_map
);
902 ret
= transport_fetch_refs(transport
, ref_map
);
904 ret
|= store_updated_refs(transport
->url
,
905 transport
->remote
->name
,
907 transport_unlock_pack(transport
);
911 static int prune_refs(struct refspec
*refs
, int ref_count
, struct ref
*ref_map
,
914 int url_len
, i
, result
= 0;
915 struct ref
*ref
, *stale_refs
= get_stale_heads(refs
, ref_count
, ref_map
);
917 int summary_width
= transport_summary_width(stale_refs
);
918 const char *dangling_msg
= dry_run
919 ? _(" (%s will become dangling)")
920 : _(" (%s has become dangling)");
923 url
= transport_anonymize_url(raw_url
);
925 url
= xstrdup("foreign");
927 url_len
= strlen(url
);
928 for (i
= url_len
- 1; url
[i
] == '/' && 0 <= i
; i
--)
932 if (4 < i
&& !strncmp(".git", url
+ i
- 3, 4))
936 struct string_list refnames
= STRING_LIST_INIT_NODUP
;
938 for (ref
= stale_refs
; ref
; ref
= ref
->next
)
939 string_list_append(&refnames
, ref
->name
);
941 result
= delete_refs(&refnames
, 0);
942 string_list_clear(&refnames
, 0);
945 if (verbosity
>= 0) {
946 for (ref
= stale_refs
; ref
; ref
= ref
->next
) {
947 struct strbuf sb
= STRBUF_INIT
;
949 fprintf(stderr
, _("From %.*s\n"), url_len
, url
);
952 format_display(&sb
, '-', _("[deleted]"), NULL
,
953 _("(none)"), prettify_refname(ref
->name
),
955 fprintf(stderr
, " %s\n",sb
.buf
);
957 warn_dangling_symref(stderr
, dangling_msg
, ref
->name
);
962 free_refs(stale_refs
);
966 static void check_not_current_branch(struct ref
*ref_map
)
968 struct branch
*current_branch
= branch_get(NULL
);
970 if (is_bare_repository() || !current_branch
)
973 for (; ref_map
; ref_map
= ref_map
->next
)
974 if (ref_map
->peer_ref
&& !strcmp(current_branch
->refname
,
975 ref_map
->peer_ref
->name
))
976 die(_("Refusing to fetch into current branch %s "
977 "of non-bare repository"), current_branch
->refname
);
980 static int truncate_fetch_head(void)
982 const char *filename
= git_path_fetch_head();
983 FILE *fp
= fopen_for_writing(filename
);
986 return error_errno(_("cannot open %s"), filename
);
991 static void set_option(struct transport
*transport
, const char *name
, const char *value
)
993 int r
= transport_set_option(transport
, name
, value
);
995 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
996 name
, value
, transport
->url
);
998 warning(_("Option \"%s\" is ignored for %s\n"),
999 name
, transport
->url
);
1002 static struct transport
*prepare_transport(struct remote
*remote
, int deepen
)
1004 struct transport
*transport
;
1005 transport
= transport_get(remote
, NULL
);
1006 transport_set_verbosity(transport
, verbosity
, progress
);
1007 transport
->family
= family
;
1009 set_option(transport
, TRANS_OPT_UPLOADPACK
, upload_pack
);
1011 set_option(transport
, TRANS_OPT_KEEP
, "yes");
1013 set_option(transport
, TRANS_OPT_DEPTH
, depth
);
1014 if (deepen
&& deepen_since
)
1015 set_option(transport
, TRANS_OPT_DEEPEN_SINCE
, deepen_since
);
1016 if (deepen
&& deepen_not
.nr
)
1017 set_option(transport
, TRANS_OPT_DEEPEN_NOT
,
1018 (const char *)&deepen_not
);
1019 if (deepen_relative
)
1020 set_option(transport
, TRANS_OPT_DEEPEN_RELATIVE
, "yes");
1022 set_option(transport
, TRANS_OPT_UPDATE_SHALLOW
, "yes");
1026 static void backfill_tags(struct transport
*transport
, struct ref
*ref_map
)
1031 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1032 * when remote helper is used (setting it to an empty string
1033 * is not unsetting). We could extend the remote helper
1034 * protocol for that, but for now, just force a new connection
1035 * without deepen-since. Similar story for deepen-not.
1037 cannot_reuse
= transport
->cannot_reuse
||
1038 deepen_since
|| deepen_not
.nr
;
1040 gsecondary
= prepare_transport(transport
->remote
, 0);
1041 transport
= gsecondary
;
1044 transport_set_option(transport
, TRANS_OPT_FOLLOWTAGS
, NULL
);
1045 transport_set_option(transport
, TRANS_OPT_DEPTH
, "0");
1046 transport_set_option(transport
, TRANS_OPT_DEEPEN_RELATIVE
, NULL
);
1047 fetch_refs(transport
, ref_map
);
1050 transport_disconnect(gsecondary
);
1055 static int do_fetch(struct transport
*transport
,
1056 struct refspec
*refs
, int ref_count
)
1058 struct string_list existing_refs
= STRING_LIST_INIT_DUP
;
1059 struct ref
*ref_map
;
1061 int autotags
= (transport
->remote
->fetch_tags
== 1);
1064 for_each_ref(add_existing
, &existing_refs
);
1066 if (tags
== TAGS_DEFAULT
) {
1067 if (transport
->remote
->fetch_tags
== 2)
1069 if (transport
->remote
->fetch_tags
== -1)
1073 if (!transport
->get_refs_list
|| !transport
->fetch
)
1074 die(_("Don't know how to fetch from %s"), transport
->url
);
1076 /* if not appending, truncate FETCH_HEAD */
1077 if (!append
&& !dry_run
) {
1078 retcode
= truncate_fetch_head();
1083 ref_map
= get_ref_map(transport
, refs
, ref_count
, tags
, &autotags
);
1084 if (!update_head_ok
)
1085 check_not_current_branch(ref_map
);
1087 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
1089 struct string_list_item
*peer_item
=
1090 string_list_lookup(&existing_refs
,
1091 rm
->peer_ref
->name
);
1093 struct object_id
*old_oid
= peer_item
->util
;
1094 oidcpy(&rm
->peer_ref
->old_oid
, old_oid
);
1099 if (tags
== TAGS_DEFAULT
&& autotags
)
1100 transport_set_option(transport
, TRANS_OPT_FOLLOWTAGS
, "1");
1103 * We only prune based on refspecs specified
1104 * explicitly (via command line or configuration); we
1105 * don't care whether --tags was specified.
1108 prune_refs(refs
, ref_count
, ref_map
, transport
->url
);
1110 prune_refs(transport
->remote
->fetch
,
1111 transport
->remote
->fetch_refspec_nr
,
1116 if (fetch_refs(transport
, ref_map
)) {
1123 /* if neither --no-tags nor --tags was specified, do automated tag
1125 if (tags
== TAGS_DEFAULT
&& autotags
) {
1126 struct ref
**tail
= &ref_map
;
1128 find_non_local_tags(transport
, &ref_map
, &tail
);
1130 backfill_tags(transport
, ref_map
);
1135 string_list_clear(&existing_refs
, 1);
1139 static int get_one_remote_for_fetch(struct remote
*remote
, void *priv
)
1141 struct string_list
*list
= priv
;
1142 if (!remote
->skip_default_update
)
1143 string_list_append(list
, remote
->name
);
1147 struct remote_group_data
{
1149 struct string_list
*list
;
1152 static int get_remote_group(const char *key
, const char *value
, void *priv
)
1154 struct remote_group_data
*g
= priv
;
1156 if (skip_prefix(key
, "remotes.", &key
) && !strcmp(key
, g
->name
)) {
1157 /* split list by white space */
1159 size_t wordlen
= strcspn(value
, " \t\n");
1162 string_list_append_nodup(g
->list
,
1163 xstrndup(value
, wordlen
));
1164 value
+= wordlen
+ (value
[wordlen
] != '\0');
1171 static int add_remote_or_group(const char *name
, struct string_list
*list
)
1173 int prev_nr
= list
->nr
;
1174 struct remote_group_data g
;
1175 g
.name
= name
; g
.list
= list
;
1177 git_config(get_remote_group
, &g
);
1178 if (list
->nr
== prev_nr
) {
1179 struct remote
*remote
= remote_get(name
);
1180 if (!remote_is_configured(remote
, 0))
1182 string_list_append(list
, remote
->name
);
1187 static void add_options_to_argv(struct argv_array
*argv
)
1190 argv_array_push(argv
, "--dry-run");
1192 argv_array_push(argv
, prune
? "--prune" : "--no-prune");
1194 argv_array_push(argv
, "--update-head-ok");
1196 argv_array_push(argv
, "--force");
1198 argv_array_push(argv
, "--keep");
1199 if (recurse_submodules
== RECURSE_SUBMODULES_ON
)
1200 argv_array_push(argv
, "--recurse-submodules");
1201 else if (recurse_submodules
== RECURSE_SUBMODULES_ON_DEMAND
)
1202 argv_array_push(argv
, "--recurse-submodules=on-demand");
1203 if (tags
== TAGS_SET
)
1204 argv_array_push(argv
, "--tags");
1205 else if (tags
== TAGS_UNSET
)
1206 argv_array_push(argv
, "--no-tags");
1208 argv_array_push(argv
, "-v");
1210 argv_array_push(argv
, "-v");
1211 else if (verbosity
< 0)
1212 argv_array_push(argv
, "-q");
1216 static int fetch_multiple(struct string_list
*list
)
1219 struct argv_array argv
= ARGV_ARRAY_INIT
;
1221 if (!append
&& !dry_run
) {
1222 int errcode
= truncate_fetch_head();
1227 argv_array_pushl(&argv
, "fetch", "--append", NULL
);
1228 add_options_to_argv(&argv
);
1230 for (i
= 0; i
< list
->nr
; i
++) {
1231 const char *name
= list
->items
[i
].string
;
1232 argv_array_push(&argv
, name
);
1234 printf(_("Fetching %s\n"), name
);
1235 if (run_command_v_opt(argv
.argv
, RUN_GIT_CMD
)) {
1236 error(_("Could not fetch %s"), name
);
1239 argv_array_pop(&argv
);
1242 argv_array_clear(&argv
);
1246 static int fetch_one(struct remote
*remote
, int argc
, const char **argv
)
1248 static const char **refs
= NULL
;
1249 struct refspec
*refspec
;
1254 die(_("No remote repository specified. Please, specify either a URL or a\n"
1255 "remote name from which new revisions should be fetched."));
1257 gtransport
= prepare_transport(remote
, 1);
1260 /* no command line request */
1261 if (0 <= gtransport
->remote
->prune
)
1262 prune
= gtransport
->remote
->prune
;
1263 else if (0 <= fetch_prune_config
)
1264 prune
= fetch_prune_config
;
1266 prune
= PRUNE_BY_DEFAULT
;
1272 refs
= xcalloc(st_add(argc
, 1), sizeof(const char *));
1273 for (i
= 0; i
< argc
; i
++) {
1274 if (!strcmp(argv
[i
], "tag")) {
1277 die(_("You need to specify a tag name."));
1278 refs
[j
++] = xstrfmt("refs/tags/%s:refs/tags/%s",
1281 refs
[j
++] = argv
[i
];
1287 sigchain_push_common(unlock_pack_on_signal
);
1288 atexit(unlock_pack
);
1289 refspec
= parse_fetch_refspec(ref_nr
, refs
);
1290 exit_code
= do_fetch(gtransport
, refspec
, ref_nr
);
1291 free_refspec(ref_nr
, refspec
);
1292 transport_disconnect(gtransport
);
1297 int cmd_fetch(int argc
, const char **argv
, const char *prefix
)
1300 struct string_list list
= STRING_LIST_INIT_DUP
;
1301 struct remote
*remote
;
1303 struct argv_array argv_gc_auto
= ARGV_ARRAY_INIT
;
1305 packet_trace_identity("fetch");
1307 /* Record the command line for the reflog */
1308 strbuf_addstr(&default_rla
, "fetch");
1309 for (i
= 1; i
< argc
; i
++)
1310 strbuf_addf(&default_rla
, " %s", argv
[i
]);
1312 git_config(git_fetch_config
, NULL
);
1314 argc
= parse_options(argc
, argv
, prefix
,
1315 builtin_fetch_options
, builtin_fetch_usage
, 0);
1317 if (deepen_relative
) {
1318 if (deepen_relative
< 0)
1319 die(_("Negative depth in --deepen is not supported"));
1321 die(_("--deepen and --depth are mutually exclusive"));
1322 depth
= xstrfmt("%d", deepen_relative
);
1326 die(_("--depth and --unshallow cannot be used together"));
1327 else if (!is_repository_shallow())
1328 die(_("--unshallow on a complete repository does not make sense"));
1330 depth
= xstrfmt("%d", INFINITE_DEPTH
);
1333 /* no need to be strict, transport_set_option() will validate it again */
1334 if (depth
&& atoi(depth
) < 1)
1335 die(_("depth %s is not a positive number"), depth
);
1336 if (depth
|| deepen_since
|| deepen_not
.nr
)
1339 if (recurse_submodules
!= RECURSE_SUBMODULES_OFF
) {
1340 if (recurse_submodules_default
) {
1341 int arg
= parse_fetch_recurse_submodules_arg("--recurse-submodules-default", recurse_submodules_default
);
1342 set_config_fetch_recurse_submodules(arg
);
1344 gitmodules_config();
1345 git_config(submodule_config
, NULL
);
1350 die(_("fetch --all does not take a repository argument"));
1352 die(_("fetch --all does not make sense with refspecs"));
1353 (void) for_each_remote(get_one_remote_for_fetch
, &list
);
1354 result
= fetch_multiple(&list
);
1355 } else if (argc
== 0) {
1356 /* No arguments -- use default remote */
1357 remote
= remote_get(NULL
);
1358 result
= fetch_one(remote
, argc
, argv
);
1359 } else if (multiple
) {
1360 /* All arguments are assumed to be remotes or groups */
1361 for (i
= 0; i
< argc
; i
++)
1362 if (!add_remote_or_group(argv
[i
], &list
))
1363 die(_("No such remote or remote group: %s"), argv
[i
]);
1364 result
= fetch_multiple(&list
);
1366 /* Single remote or group */
1367 (void) add_remote_or_group(argv
[0], &list
);
1369 /* More than one remote */
1371 die(_("Fetching a group and specifying refspecs does not make sense"));
1372 result
= fetch_multiple(&list
);
1374 /* Zero or one remotes */
1375 remote
= remote_get(argv
[0]);
1376 result
= fetch_one(remote
, argc
-1, argv
+1);
1380 if (!result
&& (recurse_submodules
!= RECURSE_SUBMODULES_OFF
)) {
1381 struct argv_array options
= ARGV_ARRAY_INIT
;
1383 add_options_to_argv(&options
);
1384 result
= fetch_populated_submodules(&options
,
1389 argv_array_clear(&options
);
1392 string_list_clear(&list
, 0);
1396 argv_array_pushl(&argv_gc_auto
, "gc", "--auto", NULL
);
1398 argv_array_push(&argv_gc_auto
, "--quiet");
1399 run_command_v_opt(argv_gc_auto
.argv
, RUN_GIT_CMD
);
1400 argv_array_clear(&argv_gc_auto
);