]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fetch.c
config: use xstrfmt in normalize_value
[thirdparty/git.git] / builtin / fetch.c
CommitLineData
b888d61c
DB
1/*
2 * "git fetch"
3 */
4#include "cache.h"
5#include "refs.h"
6#include "commit.h"
7#include "builtin.h"
c455c87c 8#include "string-list.h"
b888d61c
DB
9#include "remote.h"
10#include "transport.h"
4191c356 11#include "run-command.h"
83201998 12#include "parse-options.h"
4a16d072 13#include "sigchain.h"
027771fc 14#include "submodule-config.h"
7dce19d3 15#include "submodule.h"
f96400cb 16#include "connected.h"
85556d4e 17#include "argv-array.h"
b888d61c 18
83201998 19static const char * const builtin_fetch_usage[] = {
719acedb
NTND
20 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
21 N_("git fetch [<options>] <group>"),
22 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
23 N_("git fetch --all [<options>]"),
83201998
KH
24 NULL
25};
b888d61c 26
83201998
KH
27enum {
28 TAGS_UNSET = 0,
29 TAGS_DEFAULT = 1,
30 TAGS_SET = 2
31};
32
737c5a9c
MS
33static int fetch_prune_config = -1; /* unspecified */
34static int prune = -1; /* unspecified */
35#define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
36
37static int all, append, dry_run, force, keep, multiple, update_head_ok, verbosity;
01fdc21f 38static int progress = -1, recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
48d25cae 39static int tags = TAGS_DEFAULT, unshallow, update_shallow;
4191c356 40static const char *depth;
83201998 41static const char *upload_pack;
2d324efa 42static struct strbuf default_rla = STRBUF_INIT;
af234459 43static struct transport *gtransport;
b26ed430 44static struct transport *gsecondary;
7dce19d3 45static const char *submodule_prefix = "";
88a21979 46static const char *recurse_submodules_default;
4b3b33a7 47static int shown_url = 0;
c5558f80
JH
48static int refmap_alloc, refmap_nr;
49static const char **refmap_array;
e4022ed2 50
8f0700dd
JL
51static int option_parse_recurse_submodules(const struct option *opt,
52 const char *arg, int unset)
53{
54 if (unset) {
55 recurse_submodules = RECURSE_SUBMODULES_OFF;
56 } else {
57 if (arg)
58 recurse_submodules = parse_fetch_recurse_submodules_arg(opt->long_name, arg);
59 else
60 recurse_submodules = RECURSE_SUBMODULES_ON;
61 }
62 return 0;
63}
e4022ed2 64
737c5a9c
MS
65static int git_fetch_config(const char *k, const char *v, void *cb)
66{
67 if (!strcmp(k, "fetch.prune")) {
68 fetch_prune_config = git_config_bool(k, v);
69 return 0;
70 }
72549dfd 71 return git_default_config(k, v, cb);
737c5a9c
MS
72}
73
c5558f80
JH
74static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
75{
76 ALLOC_GROW(refmap_array, refmap_nr + 1, refmap_alloc);
77
78 /*
79 * "git fetch --refmap='' origin foo"
80 * can be used to tell the command not to store anywhere
81 */
82 if (*arg)
83 refmap_array[refmap_nr++] = arg;
84 return 0;
85}
86
83201998 87static struct option builtin_fetch_options[] = {
7f87aff2 88 OPT__VERBOSITY(&verbosity),
d5d09d47
SB
89 OPT_BOOL(0, "all", &all,
90 N_("fetch from all remotes")),
91 OPT_BOOL('a', "append", &append,
92 N_("append to .git/FETCH_HEAD instead of overwriting")),
719acedb
NTND
93 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
94 N_("path to upload pack on remote end")),
95 OPT__FORCE(&force, N_("force overwrite of local branch")),
d5d09d47
SB
96 OPT_BOOL('m', "multiple", &multiple,
97 N_("fetch from multiple remotes")),
83201998 98 OPT_SET_INT('t', "tags", &tags,
719acedb 99 N_("fetch all tags and associated objects"), TAGS_SET),
e7951290 100 OPT_SET_INT('n', NULL, &tags,
719acedb 101 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
d5d09d47
SB
102 OPT_BOOL('p', "prune", &prune,
103 N_("prune remote-tracking branches no longer on remote")),
719acedb
NTND
104 { OPTION_CALLBACK, 0, "recurse-submodules", NULL, N_("on-demand"),
105 N_("control recursive fetching of submodules"),
8f0700dd 106 PARSE_OPT_OPTARG, option_parse_recurse_submodules },
d5d09d47
SB
107 OPT_BOOL(0, "dry-run", &dry_run,
108 N_("dry run")),
109 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
110 OPT_BOOL('u', "update-head-ok", &update_head_ok,
719acedb
NTND
111 N_("allow updating of HEAD ref")),
112 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
113 OPT_STRING(0, "depth", &depth, N_("depth"),
114 N_("deepen history of shallow clone")),
4dcb167f
NTND
115 { OPTION_SET_INT, 0, "unshallow", &unshallow, NULL,
116 N_("convert to a complete repository"),
117 PARSE_OPT_NONEG | PARSE_OPT_NOARG, NULL, 1 },
719acedb
NTND
118 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
119 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
88a21979
JL
120 { OPTION_STRING, 0, "recurse-submodules-default",
121 &recurse_submodules_default, NULL,
719acedb 122 N_("default mode for recursion"), PARSE_OPT_HIDDEN },
48d25cae
NTND
123 OPT_BOOL(0, "update-shallow", &update_shallow,
124 N_("accept refs that update .git/shallow")),
c5558f80
JH
125 { OPTION_CALLBACK, 0, "refmap", NULL, N_("refmap"),
126 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg },
83201998
KH
127 OPT_END()
128};
129
e4022ed2
SP
130static void unlock_pack(void)
131{
af234459
JH
132 if (gtransport)
133 transport_unlock_pack(gtransport);
b26ed430
JH
134 if (gsecondary)
135 transport_unlock_pack(gsecondary);
e4022ed2
SP
136}
137
138static void unlock_pack_on_signal(int signo)
139{
140 unlock_pack();
4a16d072 141 sigchain_pop(signo);
e4022ed2
SP
142 raise(signo);
143}
b888d61c 144
85682c19 145static void add_merge_config(struct ref **head,
4577370e 146 const struct ref *remote_refs,
85682c19
SP
147 struct branch *branch,
148 struct ref ***tail)
b888d61c 149{
85682c19 150 int i;
b888d61c 151
85682c19
SP
152 for (i = 0; i < branch->merge_nr; i++) {
153 struct ref *rm, **old_tail = *tail;
154 struct refspec refspec;
155
156 for (rm = *head; rm; rm = rm->next) {
157 if (branch_merge_matches(branch, i, rm->name)) {
900f2814 158 rm->fetch_head_status = FETCH_HEAD_MERGE;
85682c19
SP
159 break;
160 }
b888d61c 161 }
85682c19
SP
162 if (rm)
163 continue;
164
9ad7c5ae 165 /*
8b3f3f84 166 * Not fetched to a remote-tracking branch? We need to fetch
85682c19 167 * it anyway to allow this branch's "branch.$name.merge"
05207a28 168 * to be honored by 'git pull', but we do not have to
9ad7c5ae
JH
169 * fail if branch.$name.merge is misconfigured to point
170 * at a nonexisting branch. If we were indeed called by
05207a28 171 * 'git pull', it will notice the misconfiguration because
9ad7c5ae
JH
172 * there is no entry in the resulting FETCH_HEAD marked
173 * for merging.
85682c19 174 */
8da61a2a 175 memset(&refspec, 0, sizeof(refspec));
85682c19 176 refspec.src = branch->merge[i]->src;
9ad7c5ae 177 get_fetch_map(remote_refs, &refspec, tail, 1);
85682c19 178 for (rm = *old_tail; rm; rm = rm->next)
900f2814 179 rm->fetch_head_status = FETCH_HEAD_MERGE;
b888d61c
DB
180 }
181}
182
0e0b7de4 183static int add_existing(const char *refname, const struct object_id *oid,
a0fbb5a3
MH
184 int flag, void *cbdata)
185{
186 struct string_list *list = (struct string_list *)cbdata;
187 struct string_list_item *item = string_list_insert(list, refname);
0e0b7de4
MH
188 struct object_id *old_oid = xmalloc(sizeof(*old_oid));
189
190 oidcpy(old_oid, oid);
191 item->util = old_oid;
a0fbb5a3
MH
192 return 0;
193}
194
195static int will_fetch(struct ref **head, const unsigned char *sha1)
196{
197 struct ref *rm = *head;
198 while (rm) {
199 if (!hashcmp(rm->old_sha1, sha1))
200 return 1;
201 rm = rm->next;
202 }
203 return 0;
204}
205
767f176a
SP
206static void find_non_local_tags(struct transport *transport,
207 struct ref **head,
a0fbb5a3
MH
208 struct ref ***tail)
209{
210 struct string_list existing_refs = STRING_LIST_INIT_DUP;
211 struct string_list remote_refs = STRING_LIST_INIT_NODUP;
212 const struct ref *ref;
213 struct string_list_item *item = NULL;
214
0e0b7de4 215 for_each_ref(add_existing, &existing_refs);
a0fbb5a3 216 for (ref = transport_get_remote_refs(transport); ref; ref = ref->next) {
ad704485 217 if (!starts_with(ref->name, "refs/tags/"))
a0fbb5a3
MH
218 continue;
219
220 /*
221 * The peeled ref always follows the matching base
222 * ref, so if we see a peeled ref that we don't want
223 * to fetch then we can mark the ref entry in the list
224 * as one to ignore by setting util to NULL.
225 */
ad704485 226 if (ends_with(ref->name, "^{}")) {
a0fbb5a3
MH
227 if (item && !has_sha1_file(ref->old_sha1) &&
228 !will_fetch(head, ref->old_sha1) &&
229 !has_sha1_file(item->util) &&
230 !will_fetch(head, item->util))
231 item->util = NULL;
232 item = NULL;
233 continue;
234 }
235
236 /*
237 * If item is non-NULL here, then we previously saw a
238 * ref not followed by a peeled reference, so we need
239 * to check if it is a lightweight tag that we want to
240 * fetch.
241 */
242 if (item && !has_sha1_file(item->util) &&
243 !will_fetch(head, item->util))
244 item->util = NULL;
245
246 item = NULL;
247
248 /* skip duplicates and refs that we already have */
249 if (string_list_has_string(&remote_refs, ref->name) ||
250 string_list_has_string(&existing_refs, ref->name))
251 continue;
252
253 item = string_list_insert(&remote_refs, ref->name);
254 item->util = (void *)ref->old_sha1;
255 }
256 string_list_clear(&existing_refs, 1);
257
258 /*
259 * We may have a final lightweight tag that needs to be
260 * checked to see if it needs fetching.
261 */
262 if (item && !has_sha1_file(item->util) &&
263 !will_fetch(head, item->util))
264 item->util = NULL;
265
266 /*
267 * For all the tags in the remote_refs string list,
268 * add them to the list of refs to be fetched
269 */
270 for_each_string_list_item(item, &remote_refs) {
271 /* Unless we have already decided to ignore this item... */
272 if (item->util)
273 {
274 struct ref *rm = alloc_ref(item->string);
275 rm->peer_ref = alloc_ref(item->string);
276 hashcpy(rm->old_sha1, item->util);
277 **tail = rm;
278 *tail = &rm->next;
279 }
280 }
281
282 string_list_clear(&remote_refs, 0);
283}
767f176a 284
b888d61c 285static struct ref *get_ref_map(struct transport *transport,
f137a45e
MH
286 struct refspec *refspecs, int refspec_count,
287 int tags, int *autotags)
b888d61c
DB
288{
289 int i;
290 struct ref *rm;
291 struct ref *ref_map = NULL;
292 struct ref **tail = &ref_map;
293
c5a84e92
MH
294 /* opportunistically-updated references: */
295 struct ref *orefs = NULL, **oref_tail = &orefs;
b888d61c 296
c5a84e92 297 const struct ref *remote_refs = transport_get_remote_refs(transport);
f2690487 298
c5a84e92 299 if (refspec_count) {
c5558f80
JH
300 struct refspec *fetch_refspec;
301 int fetch_refspec_nr;
302
f137a45e
MH
303 for (i = 0; i < refspec_count; i++) {
304 get_fetch_map(remote_refs, &refspecs[i], &tail, 0);
305 if (refspecs[i].dst && refspecs[i].dst[0])
b888d61c
DB
306 *autotags = 1;
307 }
0281c930 308 /* Merge everything on the command line (but not --tags) */
b888d61c 309 for (rm = ref_map; rm; rm = rm->next)
900f2814 310 rm->fetch_head_status = FETCH_HEAD_MERGE;
f2690487
JK
311
312 /*
0281c930
MH
313 * For any refs that we happen to be fetching via
314 * command-line arguments, the destination ref might
315 * have been missing or have been different than the
316 * remote-tracking ref that would be derived from the
317 * configured refspec. In these cases, we want to
318 * take the opportunity to update their configured
319 * remote-tracking reference. However, we do not want
320 * to mention these entries in FETCH_HEAD at all, as
321 * they would simply be duplicates of existing
322 * entries, so we set them FETCH_HEAD_IGNORE below.
323 *
324 * We compute these entries now, based only on the
325 * refspecs specified on the command line. But we add
326 * them to the list following the refspecs resulting
327 * from the tags option so that one of the latter,
328 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
329 * by ref_remove_duplicates() in favor of one of these
330 * opportunistic entries with FETCH_HEAD_IGNORE.
f2690487 331 */
c5558f80
JH
332 if (refmap_array) {
333 fetch_refspec = parse_fetch_refspec(refmap_nr, refmap_array);
334 fetch_refspec_nr = refmap_nr;
335 } else {
336 fetch_refspec = transport->remote->fetch;
337 fetch_refspec_nr = transport->remote->fetch_refspec_nr;
338 }
339
340 for (i = 0; i < fetch_refspec_nr; i++)
341 get_fetch_map(ref_map, &fetch_refspec[i], &oref_tail, 1);
0281c930
MH
342
343 if (tags == TAGS_SET)
344 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
c5558f80
JH
345 } else if (refmap_array) {
346 die("--refmap option is only meaningful with command-line refspec(s).");
b888d61c
DB
347 } else {
348 /* Use the defaults */
349 struct remote *remote = transport->remote;
85682c19
SP
350 struct branch *branch = branch_get(NULL);
351 int has_merge = branch_has_merge_config(branch);
3ee1757b
BC
352 if (remote &&
353 (remote->fetch_refspec_nr ||
f31dbdc7 354 /* Note: has_merge implies non-NULL branch->remote_name */
3ee1757b 355 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
b888d61c 356 for (i = 0; i < remote->fetch_refspec_nr; i++) {
9ad7c5ae 357 get_fetch_map(remote_refs, &remote->fetch[i], &tail, 0);
b888d61c
DB
358 if (remote->fetch[i].dst &&
359 remote->fetch[i].dst[0])
360 *autotags = 1;
85682c19 361 if (!i && !has_merge && ref_map &&
cfb8f898 362 !remote->fetch[0].pattern)
900f2814 363 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
b888d61c 364 }
da0204df
JS
365 /*
366 * if the remote we're fetching from is the same
367 * as given in branch.<name>.remote, we add the
368 * ref given in branch.<name>.merge, too.
f31dbdc7
BC
369 *
370 * Note: has_merge implies non-NULL branch->remote_name
da0204df 371 */
9ad7c5ae
JH
372 if (has_merge &&
373 !strcmp(branch->remote_name, remote->name))
85682c19 374 add_merge_config(&ref_map, remote_refs, branch, &tail);
b888d61c
DB
375 } else {
376 ref_map = get_remote_ref(remote_refs, "HEAD");
9ad7c5ae 377 if (!ref_map)
bd4a51fc 378 die(_("Couldn't find remote ref HEAD"));
900f2814 379 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
5aaf7f2a 380 tail = &ref_map->next;
b888d61c
DB
381 }
382 }
0281c930 383
c5a84e92
MH
384 if (tags == TAGS_SET)
385 /* also fetch all tags */
386 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
387 else if (tags == TAGS_DEFAULT && *autotags)
767f176a 388 find_non_local_tags(transport, &ref_map, &tail);
0281c930 389
c5a84e92
MH
390 /* Now append any refs to be updated opportunistically: */
391 *tail = orefs;
392 for (rm = orefs; rm; rm = rm->next) {
393 rm->fetch_head_status = FETCH_HEAD_IGNORE;
394 tail = &rm->next;
395 }
396
b9afe665 397 return ref_remove_duplicates(ref_map);
b888d61c
DB
398}
399
fa250759
JK
400#define STORE_REF_ERROR_OTHER 1
401#define STORE_REF_ERROR_DF_CONFLICT 2
402
b888d61c
DB
403static int s_update_ref(const char *action,
404 struct ref *ref,
405 int check_old)
406{
407 char msg[1024];
408 char *rla = getenv("GIT_REFLOG_ACTION");
cd94f765
RS
409 struct ref_transaction *transaction;
410 struct strbuf err = STRBUF_INIT;
411 int ret, df_conflict = 0;
b888d61c 412
28a15401
JS
413 if (dry_run)
414 return 0;
b888d61c 415 if (!rla)
2d324efa 416 rla = default_rla.buf;
b888d61c 417 snprintf(msg, sizeof(msg), "%s: %s", rla, action);
cd94f765
RS
418
419 transaction = ref_transaction_begin(&err);
420 if (!transaction ||
1d147bdf
MH
421 ref_transaction_update(transaction, ref->name,
422 ref->new_sha1,
423 check_old ? ref->old_sha1 : NULL,
424 0, msg, &err))
cd94f765
RS
425 goto fail;
426
427 ret = ref_transaction_commit(transaction, &err);
428 if (ret) {
429 df_conflict = (ret == TRANSACTION_NAME_CONFLICT);
430 goto fail;
431 }
432
433 ref_transaction_free(transaction);
434 strbuf_release(&err);
b888d61c 435 return 0;
cd94f765
RS
436fail:
437 ref_transaction_free(transaction);
438 error("%s", err.buf);
439 strbuf_release(&err);
440 return df_conflict ? STORE_REF_ERROR_DF_CONFLICT
441 : STORE_REF_ERROR_OTHER;
b888d61c
DB
442}
443
9ef4272b 444#define REFCOL_WIDTH 10
165f3902 445
b888d61c 446static int update_local_ref(struct ref *ref,
165f3902 447 const char *remote,
6da618d5 448 const struct ref *remote_ref,
5914f2d0 449 struct strbuf *display)
b888d61c 450{
b888d61c
DB
451 struct commit *current = NULL, *updated;
452 enum object_type type;
453 struct branch *current_branch = branch_get(NULL);
4577e483 454 const char *pretty_ref = prettify_refname(ref->name);
b888d61c
DB
455
456 type = sha1_object_info(ref->new_sha1, NULL);
457 if (type < 0)
bd4a51fc 458 die(_("object %s not found"), sha1_to_hex(ref->new_sha1));
b888d61c 459
b888d61c 460 if (!hashcmp(ref->old_sha1, ref->new_sha1)) {
7f87aff2 461 if (verbosity > 0)
5914f2d0 462 strbuf_addf(display, "= %-*s %-*s -> %s",
754395d3
NTND
463 TRANSPORT_SUMMARY(_("[up to date]")),
464 REFCOL_WIDTH, remote, pretty_ref);
b888d61c
DB
465 return 0;
466 }
467
b3abdd9d
SP
468 if (current_branch &&
469 !strcmp(ref->name, current_branch->name) &&
b888d61c
DB
470 !(update_head_ok || is_bare_repository()) &&
471 !is_null_sha1(ref->old_sha1)) {
472 /*
473 * If this is the head, and it's not okay to update
474 * the head, and the old value of the head isn't empty...
475 */
5914f2d0
JK
476 strbuf_addf(display,
477 _("! %-*s %-*s -> %s (can't fetch in current branch)"),
754395d3 478 TRANSPORT_SUMMARY(_("[rejected]")),
5914f2d0 479 REFCOL_WIDTH, remote, pretty_ref);
b888d61c
DB
480 return 1;
481 }
482
483 if (!is_null_sha1(ref->old_sha1) &&
59556548 484 starts_with(ref->name, "refs/tags/")) {
6315472e
JK
485 int r;
486 r = s_update_ref("updating tag", ref, 0);
5914f2d0
JK
487 strbuf_addf(display, "%c %-*s %-*s -> %s%s",
488 r ? '!' : '-',
754395d3 489 TRANSPORT_SUMMARY(_("[tag update]")),
5914f2d0
JK
490 REFCOL_WIDTH, remote, pretty_ref,
491 r ? _(" (unable to update local ref)") : "");
6315472e 492 return r;
b888d61c
DB
493 }
494
cfa5b2b7
SP
495 current = lookup_commit_reference_gently(ref->old_sha1, 1);
496 updated = lookup_commit_reference_gently(ref->new_sha1, 1);
b888d61c 497 if (!current || !updated) {
165f3902
NP
498 const char *msg;
499 const char *what;
6315472e 500 int r;
0997adaa
MB
501 /*
502 * Nicely describe the new ref we're fetching.
503 * Base this on the remote's ref name, as it's
504 * more likely to follow a standard layout.
505 */
506 const char *name = remote_ref ? remote_ref->name : "";
59556548 507 if (starts_with(name, "refs/tags/")) {
b888d61c 508 msg = "storing tag";
f7b3742a 509 what = _("[new tag]");
59556548 510 } else if (starts_with(name, "refs/heads/")) {
b888d61c 511 msg = "storing head";
f7b3742a 512 what = _("[new branch]");
0997adaa
MB
513 } else {
514 msg = "storing ref";
515 what = _("[new ref]");
165f3902
NP
516 }
517
a6801adc
JL
518 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
519 (recurse_submodules != RECURSE_SUBMODULES_ON))
520 check_for_new_submodule_commits(ref->new_sha1);
6315472e 521 r = s_update_ref(msg, ref, 0);
5914f2d0
JK
522 strbuf_addf(display, "%c %-*s %-*s -> %s%s",
523 r ? '!' : '*',
754395d3 524 TRANSPORT_SUMMARY(what),
5914f2d0
JK
525 REFCOL_WIDTH, remote, pretty_ref,
526 r ? _(" (unable to update local ref)") : "");
6315472e 527 return r;
b888d61c
DB
528 }
529
a20efee9 530 if (in_merge_bases(current, updated)) {
165f3902 531 char quickref[83];
6315472e 532 int r;
165f3902
NP
533 strcpy(quickref, find_unique_abbrev(current->object.sha1, DEFAULT_ABBREV));
534 strcat(quickref, "..");
535 strcat(quickref, find_unique_abbrev(ref->new_sha1, DEFAULT_ABBREV));
88a21979
JL
536 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
537 (recurse_submodules != RECURSE_SUBMODULES_ON))
538 check_for_new_submodule_commits(ref->new_sha1);
a75d7b54 539 r = s_update_ref("fast-forward", ref, 1);
5914f2d0
JK
540 strbuf_addf(display, "%c %-*s %-*s -> %s%s",
541 r ? '!' : ' ',
542 TRANSPORT_SUMMARY_WIDTH, quickref,
543 REFCOL_WIDTH, remote, pretty_ref,
544 r ? _(" (unable to update local ref)") : "");
6315472e 545 return r;
165f3902
NP
546 } else if (force || ref->force) {
547 char quickref[84];
6315472e 548 int r;
165f3902
NP
549 strcpy(quickref, find_unique_abbrev(current->object.sha1, DEFAULT_ABBREV));
550 strcat(quickref, "...");
551 strcat(quickref, find_unique_abbrev(ref->new_sha1, DEFAULT_ABBREV));
88a21979
JL
552 if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
553 (recurse_submodules != RECURSE_SUBMODULES_ON))
554 check_for_new_submodule_commits(ref->new_sha1);
6315472e 555 r = s_update_ref("forced-update", ref, 1);
5914f2d0
JK
556 strbuf_addf(display, "%c %-*s %-*s -> %s (%s)",
557 r ? '!' : '+',
558 TRANSPORT_SUMMARY_WIDTH, quickref,
559 REFCOL_WIDTH, remote, pretty_ref,
560 r ? _("unable to update local ref") : _("forced update"));
6315472e 561 return r;
165f3902 562 } else {
5914f2d0 563 strbuf_addf(display, "! %-*s %-*s -> %s %s",
754395d3 564 TRANSPORT_SUMMARY(_("[rejected]")),
5914f2d0
JK
565 REFCOL_WIDTH, remote, pretty_ref,
566 _("(non-fast-forward)"));
b888d61c
DB
567 return 1;
568 }
b888d61c
DB
569}
570
f0e278b1 571static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
6b67e0dc 572{
f0e278b1
JH
573 struct ref **rm = cb_data;
574 struct ref *ref = *rm;
6b67e0dc 575
4820a33b
NTND
576 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
577 ref = ref->next;
f0e278b1
JH
578 if (!ref)
579 return -1; /* end of the list */
580 *rm = ref->next;
581 hashcpy(sha1, ref->old_sha1);
582 return 0;
6b67e0dc
JH
583}
584
47abd85b 585static int store_updated_refs(const char *raw_url, const char *remote_name,
f3cb169b 586 struct ref *ref_map)
b888d61c
DB
587{
588 FILE *fp;
589 struct commit *commit;
4b3b33a7 590 int url_len, i, rc = 0;
5914f2d0 591 struct strbuf note = STRBUF_INIT;
b888d61c
DB
592 const char *what, *kind;
593 struct ref *rm;
dcf69262 594 char *url;
f932729c 595 const char *filename = dry_run ? "/dev/null" : git_path_fetch_head();
900f2814 596 int want_status;
b888d61c 597
d6617c7c
AGR
598 fp = fopen(filename, "a");
599 if (!fp)
bd4a51fc 600 return error(_("cannot open %s: %s\n"), filename, strerror(errno));
47abd85b 601
fb0cc87e
DB
602 if (raw_url)
603 url = transport_anonymize_url(raw_url);
604 else
605 url = xstrdup("foreign");
6b67e0dc 606
f0e278b1 607 rm = ref_map;
3f7d11c4 608 if (check_everything_connected(iterate_ref_map, 0, &rm)) {
9516a598
TRC
609 rc = error(_("%s did not send all necessary objects\n"), url);
610 goto abort;
611 }
6b67e0dc 612
96890f4c 613 /*
900f2814
JK
614 * We do a pass for each fetch_head_status type in their enum order, so
615 * merged entries are written before not-for-merge. That lets readers
616 * use FETCH_HEAD as a refname to refer to the ref to be merged.
96890f4c 617 */
900f2814
JK
618 for (want_status = FETCH_HEAD_MERGE;
619 want_status <= FETCH_HEAD_IGNORE;
620 want_status++) {
96890f4c
JH
621 for (rm = ref_map; rm; rm = rm->next) {
622 struct ref *ref = NULL;
900f2814 623 const char *merge_status_marker = "";
96890f4c 624
4820a33b
NTND
625 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
626 if (want_status == FETCH_HEAD_MERGE)
627 warning(_("reject %s because shallow roots are not allowed to be updated"),
628 rm->peer_ref ? rm->peer_ref->name : rm->name);
629 continue;
630 }
631
96890f4c
JH
632 commit = lookup_commit_reference_gently(rm->old_sha1, 1);
633 if (!commit)
900f2814 634 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
96890f4c 635
900f2814 636 if (rm->fetch_head_status != want_status)
96890f4c
JH
637 continue;
638
639 if (rm->peer_ref) {
640 ref = xcalloc(1, sizeof(*ref) + strlen(rm->peer_ref->name) + 1);
641 strcpy(ref->name, rm->peer_ref->name);
642 hashcpy(ref->old_sha1, rm->peer_ref->old_sha1);
643 hashcpy(ref->new_sha1, rm->old_sha1);
644 ref->force = rm->peer_ref->force;
645 }
b888d61c 646
b888d61c 647
96890f4c
JH
648 if (!strcmp(rm->name, "HEAD")) {
649 kind = "";
650 what = "";
651 }
59556548 652 else if (starts_with(rm->name, "refs/heads/")) {
96890f4c
JH
653 kind = "branch";
654 what = rm->name + 11;
655 }
59556548 656 else if (starts_with(rm->name, "refs/tags/")) {
96890f4c
JH
657 kind = "tag";
658 what = rm->name + 10;
659 }
59556548 660 else if (starts_with(rm->name, "refs/remotes/")) {
96890f4c
JH
661 kind = "remote-tracking branch";
662 what = rm->name + 13;
663 }
664 else {
665 kind = "";
666 what = rm->name;
667 }
b888d61c 668
96890f4c
JH
669 url_len = strlen(url);
670 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
671 ;
672 url_len = i + 1;
673 if (4 < i && !strncmp(".git", url + i - 3, 4))
674 url_len = i - 3;
675
676 strbuf_reset(&note);
677 if (*what) {
678 if (*kind)
679 strbuf_addf(&note, "%s ", kind);
680 strbuf_addf(&note, "'%s' of ", what);
681 }
900f2814
JK
682 switch (rm->fetch_head_status) {
683 case FETCH_HEAD_NOT_FOR_MERGE:
684 merge_status_marker = "not-for-merge";
685 /* fall-through */
686 case FETCH_HEAD_MERGE:
687 fprintf(fp, "%s\t%s\t%s",
688 sha1_to_hex(rm->old_sha1),
689 merge_status_marker,
690 note.buf);
691 for (i = 0; i < url_len; ++i)
692 if ('\n' == url[i])
693 fputs("\\n", fp);
694 else
695 fputc(url[i], fp);
696 fputc('\n', fp);
697 break;
698 default:
699 /* do not write anything to FETCH_HEAD */
700 break;
701 }
96890f4c
JH
702
703 strbuf_reset(&note);
704 if (ref) {
6da618d5 705 rc |= update_local_ref(ref, what, rm, &note);
96890f4c
JH
706 free(ref);
707 } else
708 strbuf_addf(&note, "* %-*s %-*s -> FETCH_HEAD",
709 TRANSPORT_SUMMARY_WIDTH,
710 *kind ? kind : "branch",
711 REFCOL_WIDTH,
712 *what ? what : "HEAD");
713 if (note.len) {
714 if (verbosity >= 0 && !shown_url) {
715 fprintf(stderr, _("From %.*s\n"),
716 url_len, url);
717 shown_url = 1;
718 }
719 if (verbosity >= 0)
720 fprintf(stderr, " %s\n", note.buf);
165f3902
NP
721 }
722 }
b888d61c 723 }
9516a598 724
fa250759 725 if (rc & STORE_REF_ERROR_DF_CONFLICT)
bd4a51fc 726 error(_("some local refs could not be updated; try running\n"
f3cb169b 727 " 'git remote prune %s' to remove any old, conflicting "
bd4a51fc 728 "branches"), remote_name);
9516a598
TRC
729
730 abort:
5914f2d0 731 strbuf_release(&note);
9516a598
TRC
732 free(url);
733 fclose(fp);
efb98b44 734 return rc;
b888d61c
DB
735}
736
4191c356
SP
737/*
738 * We would want to bypass the object transfer altogether if
d9eb0205 739 * everything we are going to fetch already exists and is connected
4191c356 740 * locally.
4191c356
SP
741 */
742static int quickfetch(struct ref *ref_map)
743{
f0e278b1
JH
744 struct ref *rm = ref_map;
745
4191c356
SP
746 /*
747 * If we are deepening a shallow clone we already have these
748 * objects reachable. Running rev-list here will return with
749 * a good (0) exit status and we'll bypass the fetch that we
750 * really need to perform. Claiming failure now will ensure
751 * we perform the network exchange to deepen our history.
752 */
753 if (depth)
754 return -1;
f0e278b1 755 return check_everything_connected(iterate_ref_map, 1, &rm);
4191c356
SP
756}
757
b888d61c
DB
758static int fetch_refs(struct transport *transport, struct ref *ref_map)
759{
4191c356
SP
760 int ret = quickfetch(ref_map);
761 if (ret)
762 ret = transport_fetch_refs(transport, ref_map);
b888d61c 763 if (!ret)
f3cb169b
JK
764 ret |= store_updated_refs(transport->url,
765 transport->remote->name,
766 ref_map);
1788c39c 767 transport_unlock_pack(transport);
b888d61c
DB
768 return ret;
769}
770
4b3b33a7
TM
771static int prune_refs(struct refspec *refs, int ref_count, struct ref *ref_map,
772 const char *raw_url)
f360d844 773{
4b3b33a7 774 int url_len, i, result = 0;
ed43de6e 775 struct ref *ref, *stale_refs = get_stale_heads(refs, ref_count, ref_map);
4b3b33a7 776 char *url;
f360d844 777 const char *dangling_msg = dry_run
18986d53
NTND
778 ? _(" (%s will become dangling)")
779 : _(" (%s has become dangling)");
f360d844 780
4b3b33a7
TM
781 if (raw_url)
782 url = transport_anonymize_url(raw_url);
783 else
784 url = xstrdup("foreign");
785
786 url_len = strlen(url);
787 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
788 ;
789
790 url_len = i + 1;
791 if (4 < i && !strncmp(".git", url + i - 3, 4))
792 url_len = i - 3;
793
a087b432
MH
794 if (!dry_run) {
795 struct string_list refnames = STRING_LIST_INIT_NODUP;
796
797 for (ref = stale_refs; ref; ref = ref->next)
798 string_list_append(&refnames, ref->name);
799
800 result = delete_refs(&refnames);
801 string_list_clear(&refnames, 0);
802 }
803
804 if (verbosity >= 0) {
805 for (ref = stale_refs; ref; ref = ref->next) {
806 if (!shown_url) {
807 fprintf(stderr, _("From %.*s\n"), url_len, url);
808 shown_url = 1;
809 }
f360d844 810 fprintf(stderr, " x %-*s %-*s -> %s\n",
754395d3 811 TRANSPORT_SUMMARY(_("[deleted]")),
502681cd 812 REFCOL_WIDTH, _("(none)"), prettify_refname(ref->name));
f360d844
JS
813 warn_dangling_symref(stderr, dangling_msg, ref->name);
814 }
815 }
a087b432 816
4b3b33a7 817 free(url);
f360d844
JS
818 free_refs(stale_refs);
819 return result;
820}
821
8ee5d731
JS
822static void check_not_current_branch(struct ref *ref_map)
823{
824 struct branch *current_branch = branch_get(NULL);
825
826 if (is_bare_repository() || !current_branch)
827 return;
828
829 for (; ref_map; ref_map = ref_map->next)
830 if (ref_map->peer_ref && !strcmp(current_branch->refname,
831 ref_map->peer_ref->name))
bd4a51fc
ÆAB
832 die(_("Refusing to fetch into current branch %s "
833 "of non-bare repository"), current_branch->refname);
8ee5d731
JS
834}
835
e6cc5104
JH
836static int truncate_fetch_head(void)
837{
f932729c 838 const char *filename = git_path_fetch_head();
e6cc5104
JH
839 FILE *fp = fopen(filename, "w");
840
841 if (!fp)
bd4a51fc 842 return error(_("cannot open %s: %s\n"), filename, strerror(errno));
e6cc5104
JH
843 fclose(fp);
844 return 0;
845}
846
db5723c6
JH
847static void set_option(struct transport *transport, const char *name, const char *value)
848{
849 int r = transport_set_option(transport, name, value);
850 if (r < 0)
851 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
852 name, value, transport->url);
853 if (r > 0)
854 warning(_("Option \"%s\" is ignored for %s\n"),
855 name, transport->url);
856}
857
0f73f8bd 858static struct transport *prepare_transport(struct remote *remote)
db5723c6
JH
859{
860 struct transport *transport;
861 transport = transport_get(remote, NULL);
862 transport_set_verbosity(transport, verbosity, progress);
863 if (upload_pack)
864 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
865 if (keep)
866 set_option(transport, TRANS_OPT_KEEP, "yes");
867 if (depth)
868 set_option(transport, TRANS_OPT_DEPTH, depth);
48d25cae
NTND
869 if (update_shallow)
870 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
db5723c6
JH
871 return transport;
872}
873
069d5032
JH
874static void backfill_tags(struct transport *transport, struct ref *ref_map)
875{
b26ed430
JH
876 if (transport->cannot_reuse) {
877 gsecondary = prepare_transport(transport->remote);
878 transport = gsecondary;
879 }
880
069d5032
JH
881 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
882 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
883 fetch_refs(transport, ref_map);
b26ed430
JH
884
885 if (gsecondary) {
886 transport_disconnect(gsecondary);
887 gsecondary = NULL;
888 }
069d5032
JH
889}
890
b888d61c
DB
891static int do_fetch(struct transport *transport,
892 struct refspec *refs, int ref_count)
893{
b87dbcc8 894 struct string_list existing_refs = STRING_LIST_INIT_DUP;
7f98428d 895 struct ref *ref_map;
b888d61c
DB
896 struct ref *rm;
897 int autotags = (transport->remote->fetch_tags == 1);
5b87d8d3 898 int retcode = 0;
b1a01e1c 899
0e0b7de4 900 for_each_ref(add_existing, &existing_refs);
b1a01e1c 901
ed368546
DJ
902 if (tags == TAGS_DEFAULT) {
903 if (transport->remote->fetch_tags == 2)
904 tags = TAGS_SET;
905 if (transport->remote->fetch_tags == -1)
906 tags = TAGS_UNSET;
907 }
b888d61c 908
824d5776 909 if (!transport->get_refs_list || !transport->fetch)
bd4a51fc 910 die(_("Don't know how to fetch from %s"), transport->url);
b888d61c
DB
911
912 /* if not appending, truncate FETCH_HEAD */
28a15401 913 if (!append && !dry_run) {
5b87d8d3
MH
914 retcode = truncate_fetch_head();
915 if (retcode)
916 goto cleanup;
d6617c7c 917 }
b888d61c
DB
918
919 ref_map = get_ref_map(transport, refs, ref_count, tags, &autotags);
8ee5d731
JS
920 if (!update_head_ok)
921 check_not_current_branch(ref_map);
b888d61c
DB
922
923 for (rm = ref_map; rm; rm = rm->next) {
b1a01e1c 924 if (rm->peer_ref) {
6f64a16f
MH
925 struct string_list_item *peer_item =
926 string_list_lookup(&existing_refs,
927 rm->peer_ref->name);
0e0b7de4
MH
928 if (peer_item) {
929 struct object_id *old_oid = peer_item->util;
930 hashcpy(rm->peer_ref->old_sha1, old_oid->hash);
931 }
b1a01e1c 932 }
b888d61c
DB
933 }
934
41fa7d2e
SP
935 if (tags == TAGS_DEFAULT && autotags)
936 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
ed43de6e 937 if (prune) {
0838bf47
MH
938 /*
939 * We only prune based on refspecs specified
940 * explicitly (via command line or configuration); we
941 * don't care whether --tags was specified.
942 */
c5a84e92 943 if (ref_count) {
4b3b33a7 944 prune_refs(refs, ref_count, ref_map, transport->url);
e8c1e6c7 945 } else {
0838bf47
MH
946 prune_refs(transport->remote->fetch,
947 transport->remote->fetch_refspec_nr,
4b3b33a7
TM
948 ref_map,
949 transport->url);
e8c1e6c7 950 }
ed43de6e 951 }
10a6cc88
TM
952 if (fetch_refs(transport, ref_map)) {
953 free_refs(ref_map);
954 retcode = 1;
955 goto cleanup;
956 }
7f98428d 957 free_refs(ref_map);
b888d61c
DB
958
959 /* if neither --no-tags nor --tags was specified, do automated tag
960 * following ... */
83201998 961 if (tags == TAGS_DEFAULT && autotags) {
c50b2b47
SP
962 struct ref **tail = &ref_map;
963 ref_map = NULL;
964 find_non_local_tags(transport, &ref_map, &tail);
069d5032
JH
965 if (ref_map)
966 backfill_tags(transport, ref_map);
b888d61c
DB
967 free_refs(ref_map);
968 }
969
5b87d8d3 970 cleanup:
f83918ed 971 string_list_clear(&existing_refs, 1);
5b87d8d3 972 return retcode;
b888d61c
DB
973}
974
9c4a036b
BG
975static int get_one_remote_for_fetch(struct remote *remote, void *priv)
976{
977 struct string_list *list = priv;
7cc91a2f 978 if (!remote->skip_default_update)
1d2f80fa 979 string_list_append(list, remote->name);
9c4a036b
BG
980 return 0;
981}
982
983struct remote_group_data {
984 const char *name;
985 struct string_list *list;
986};
987
988static int get_remote_group(const char *key, const char *value, void *priv)
989{
990 struct remote_group_data *g = priv;
991
bc598c32 992 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
9c4a036b 993 /* split list by white space */
9c4a036b 994 while (*value) {
5f65499f
MH
995 size_t wordlen = strcspn(value, " \t\n");
996
e286542d 997 if (wordlen >= 1)
1d2f80fa 998 string_list_append(g->list,
e286542d
MH
999 xstrndup(value, wordlen));
1000 value += wordlen + (value[wordlen] != '\0');
9c4a036b
BG
1001 }
1002 }
1003
1004 return 0;
1005}
1006
1007static int add_remote_or_group(const char *name, struct string_list *list)
1008{
1009 int prev_nr = list->nr;
66dbfd55
GV
1010 struct remote_group_data g;
1011 g.name = name; g.list = list;
9c4a036b
BG
1012
1013 git_config(get_remote_group, &g);
1014 if (list->nr == prev_nr) {
1015 struct remote *remote;
1016 if (!remote_is_configured(name))
1017 return 0;
1018 remote = remote_get(name);
1d2f80fa 1019 string_list_append(list, remote->name);
9c4a036b
BG
1020 }
1021 return 1;
1022}
1023
85556d4e 1024static void add_options_to_argv(struct argv_array *argv)
9c4a036b 1025{
28a15401 1026 if (dry_run)
85556d4e 1027 argv_array_push(argv, "--dry-run");
90765fa3
MH
1028 if (prune != -1)
1029 argv_array_push(argv, prune ? "--prune" : "--no-prune");
bba5322a 1030 if (update_head_ok)
85556d4e 1031 argv_array_push(argv, "--update-head-ok");
bba5322a 1032 if (force)
85556d4e 1033 argv_array_push(argv, "--force");
bba5322a 1034 if (keep)
85556d4e 1035 argv_array_push(argv, "--keep");
be254a0e 1036 if (recurse_submodules == RECURSE_SUBMODULES_ON)
85556d4e 1037 argv_array_push(argv, "--recurse-submodules");
8f0700dd 1038 else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
85556d4e 1039 argv_array_push(argv, "--recurse-submodules=on-demand");
85566460
DJ
1040 if (tags == TAGS_SET)
1041 argv_array_push(argv, "--tags");
1042 else if (tags == TAGS_UNSET)
1043 argv_array_push(argv, "--no-tags");
9c4a036b 1044 if (verbosity >= 2)
85556d4e 1045 argv_array_push(argv, "-v");
9c4a036b 1046 if (verbosity >= 1)
85556d4e 1047 argv_array_push(argv, "-v");
9c4a036b 1048 else if (verbosity < 0)
85556d4e 1049 argv_array_push(argv, "-q");
7dce19d3
JL
1050
1051}
1052
1053static int fetch_multiple(struct string_list *list)
1054{
1055 int i, result = 0;
85556d4e 1056 struct argv_array argv = ARGV_ARRAY_INIT;
9c4a036b 1057
e6cc5104
JH
1058 if (!append && !dry_run) {
1059 int errcode = truncate_fetch_head();
1060 if (errcode)
1061 return errcode;
1062 }
1063
85556d4e
JK
1064 argv_array_pushl(&argv, "fetch", "--append", NULL);
1065 add_options_to_argv(&argv);
1066
9c4a036b
BG
1067 for (i = 0; i < list->nr; i++) {
1068 const char *name = list->items[i].string;
85556d4e 1069 argv_array_push(&argv, name);
9c4a036b 1070 if (verbosity >= 0)
bd4a51fc 1071 printf(_("Fetching %s\n"), name);
85556d4e 1072 if (run_command_v_opt(argv.argv, RUN_GIT_CMD)) {
bd4a51fc 1073 error(_("Could not fetch %s"), name);
9c4a036b
BG
1074 result = 1;
1075 }
85556d4e 1076 argv_array_pop(&argv);
9c4a036b
BG
1077 }
1078
85556d4e 1079 argv_array_clear(&argv);
9c4a036b
BG
1080 return result;
1081}
1082
1083static int fetch_one(struct remote *remote, int argc, const char **argv)
b888d61c 1084{
b888d61c 1085 static const char **refs = NULL;
d8ead159 1086 struct refspec *refspec;
b888d61c 1087 int ref_nr = 0;
7b7f39ea 1088 int exit_code;
b888d61c 1089
fa685bdf 1090 if (!remote)
bd4a51fc
ÆAB
1091 die(_("No remote repository specified. Please, specify either a URL or a\n"
1092 "remote name from which new revisions should be fetched."));
fa685bdf 1093
db5723c6 1094 gtransport = prepare_transport(remote);
737c5a9c
MS
1095
1096 if (prune < 0) {
1097 /* no command line request */
20419de9
JH
1098 if (0 <= gtransport->remote->prune)
1099 prune = gtransport->remote->prune;
737c5a9c
MS
1100 else if (0 <= fetch_prune_config)
1101 prune = fetch_prune_config;
1102 else
1103 prune = PRUNE_BY_DEFAULT;
1104 }
1105
9c4a036b 1106 if (argc > 0) {
b888d61c 1107 int j = 0;
bf7e645c 1108 int i;
83201998 1109 refs = xcalloc(argc + 1, sizeof(const char *));
9c4a036b 1110 for (i = 0; i < argc; i++) {
b888d61c 1111 if (!strcmp(argv[i], "tag")) {
b888d61c 1112 i++;
f53423b0 1113 if (i >= argc)
bd4a51fc 1114 die(_("You need to specify a tag name."));
b2724c87
JK
1115 refs[j++] = xstrfmt("refs/tags/%s:refs/tags/%s",
1116 argv[i], argv[i]);
b888d61c
DB
1117 } else
1118 refs[j++] = argv[i];
b888d61c
DB
1119 }
1120 refs[j] = NULL;
1121 ref_nr = j;
b888d61c
DB
1122 }
1123
57b235a4 1124 sigchain_push_common(unlock_pack_on_signal);
e4022ed2 1125 atexit(unlock_pack);
d8ead159 1126 refspec = parse_fetch_refspec(ref_nr, refs);
af234459 1127 exit_code = do_fetch(gtransport, refspec, ref_nr);
5caf1973 1128 free_refspec(ref_nr, refspec);
af234459
JH
1129 transport_disconnect(gtransport);
1130 gtransport = NULL;
7b7f39ea 1131 return exit_code;
b888d61c 1132}
9c4a036b
BG
1133
1134int cmd_fetch(int argc, const char **argv, const char *prefix)
1135{
1136 int i;
183113a5 1137 struct string_list list = STRING_LIST_INIT_NODUP;
9c4a036b
BG
1138 struct remote *remote;
1139 int result = 0;
1991006c 1140 struct argv_array argv_gc_auto = ARGV_ARRAY_INIT;
9c4a036b 1141
bbc30f99
JK
1142 packet_trace_identity("fetch");
1143
9c4a036b
BG
1144 /* Record the command line for the reflog */
1145 strbuf_addstr(&default_rla, "fetch");
1146 for (i = 1; i < argc; i++)
1147 strbuf_addf(&default_rla, " %s", argv[i]);
1148
737c5a9c
MS
1149 git_config(git_fetch_config, NULL);
1150
9c4a036b
BG
1151 argc = parse_options(argc, argv, prefix,
1152 builtin_fetch_options, builtin_fetch_usage, 0);
1153
4dcb167f
NTND
1154 if (unshallow) {
1155 if (depth)
1156 die(_("--depth and --unshallow cannot be used together"));
1157 else if (!is_repository_shallow())
1158 die(_("--unshallow on a complete repository does not make sense"));
1159 else {
1160 static char inf_depth[12];
1161 sprintf(inf_depth, "%d", INFINITE_DEPTH);
1162 depth = inf_depth;
1163 }
1164 }
1165
5594bcad
NTND
1166 /* no need to be strict, transport_set_option() will validate it again */
1167 if (depth && atoi(depth) < 1)
1168 die(_("depth %s is not a positive number"), depth);
1169
18322bad
JL
1170 if (recurse_submodules != RECURSE_SUBMODULES_OFF) {
1171 if (recurse_submodules_default) {
1172 int arg = parse_fetch_recurse_submodules_arg("--recurse-submodules-default", recurse_submodules_default);
1173 set_config_fetch_recurse_submodules(arg);
1174 }
1175 gitmodules_config();
1176 git_config(submodule_config, NULL);
1177 }
1178
9c4a036b
BG
1179 if (all) {
1180 if (argc == 1)
bd4a51fc 1181 die(_("fetch --all does not take a repository argument"));
9c4a036b 1182 else if (argc > 1)
bd4a51fc 1183 die(_("fetch --all does not make sense with refspecs"));
9c4a036b
BG
1184 (void) for_each_remote(get_one_remote_for_fetch, &list);
1185 result = fetch_multiple(&list);
1186 } else if (argc == 0) {
1187 /* No arguments -- use default remote */
1188 remote = remote_get(NULL);
1189 result = fetch_one(remote, argc, argv);
16679e37
BG
1190 } else if (multiple) {
1191 /* All arguments are assumed to be remotes or groups */
1192 for (i = 0; i < argc; i++)
1193 if (!add_remote_or_group(argv[i], &list))
bd4a51fc 1194 die(_("No such remote or remote group: %s"), argv[i]);
16679e37 1195 result = fetch_multiple(&list);
9c4a036b
BG
1196 } else {
1197 /* Single remote or group */
1198 (void) add_remote_or_group(argv[0], &list);
1199 if (list.nr > 1) {
1200 /* More than one remote */
1201 if (argc > 1)
bd4a51fc 1202 die(_("Fetching a group and specifying refspecs does not make sense"));
9c4a036b
BG
1203 result = fetch_multiple(&list);
1204 } else {
1205 /* Zero or one remotes */
1206 remote = remote_get(argv[0]);
1207 result = fetch_one(remote, argc-1, argv+1);
1208 }
1209 }
1210
be254a0e 1211 if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
85556d4e
JK
1212 struct argv_array options = ARGV_ARRAY_INIT;
1213
1214 add_options_to_argv(&options);
50d89ad6 1215 result = fetch_populated_submodules(&options,
7dce19d3 1216 submodule_prefix,
8f0700dd 1217 recurse_submodules,
7dce19d3 1218 verbosity < 0);
85556d4e 1219 argv_array_clear(&options);
7dce19d3
JL
1220 }
1221
9c4a036b
BG
1222 /* All names were strdup()ed or strndup()ed */
1223 list.strdup_strings = 1;
1224 string_list_clear(&list, 0);
1225
1991006c 1226 argv_array_pushl(&argv_gc_auto, "gc", "--auto", NULL);
6fceed3b
NTND
1227 if (verbosity < 0)
1228 argv_array_push(&argv_gc_auto, "--quiet");
1991006c
NTND
1229 run_command_v_opt(argv_gc_auto.argv, RUN_GIT_CMD);
1230 argv_array_clear(&argv_gc_auto);
131b8fcb 1231
9c4a036b
BG
1232 return result;
1233}