]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fetch.c
Use parentheses and `...' where appropriate
[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"
f1863d0d 14#include "transport.h"
b888d61c 15
83201998 16static const char * const builtin_fetch_usage[] = {
e3163c75
TRC
17 "git fetch [<options>] [<repository> [<refspec>...]]",
18 "git fetch [<options>] <group>",
0adda936 19 "git fetch --multiple [<options>] [(<repository> | <group>)...]",
e3163c75 20 "git fetch --all [<options>]",
83201998
KH
21 NULL
22};
b888d61c 23
83201998
KH
24enum {
25 TAGS_UNSET = 0,
26 TAGS_DEFAULT = 1,
27 TAGS_SET = 2
28};
29
28a15401 30static int all, append, dry_run, force, keep, multiple, prune, update_head_ok, verbosity;
9839018e 31static int progress;
83201998 32static int tags = TAGS_DEFAULT;
4191c356 33static const char *depth;
83201998 34static const char *upload_pack;
2d324efa 35static struct strbuf default_rla = STRBUF_INIT;
e4022ed2
SP
36static struct transport *transport;
37
83201998 38static struct option builtin_fetch_options[] = {
7f87aff2 39 OPT__VERBOSITY(&verbosity),
9c4a036b
BG
40 OPT_BOOLEAN(0, "all", &all,
41 "fetch from all remotes"),
83201998
KH
42 OPT_BOOLEAN('a', "append", &append,
43 "append to .git/FETCH_HEAD instead of overwriting"),
44 OPT_STRING(0, "upload-pack", &upload_pack, "PATH",
45 "path to upload pack on remote end"),
46 OPT_BOOLEAN('f', "force", &force,
47 "force overwrite of local branch"),
16679e37
BG
48 OPT_BOOLEAN('m', "multiple", &multiple,
49 "fetch from multiple remotes"),
83201998
KH
50 OPT_SET_INT('t', "tags", &tags,
51 "fetch all tags and associated objects", TAGS_SET),
e7951290
JS
52 OPT_SET_INT('n', NULL, &tags,
53 "do not fetch all tags (--no-tags)", TAGS_UNSET),
f360d844
JS
54 OPT_BOOLEAN('p', "prune", &prune,
55 "prune tracking branches no longer on remote"),
28a15401
JS
56 OPT_BOOLEAN(0, "dry-run", &dry_run,
57 "dry run"),
83201998
KH
58 OPT_BOOLEAN('k', "keep", &keep, "keep downloaded pack"),
59 OPT_BOOLEAN('u', "update-head-ok", &update_head_ok,
60 "allow updating of HEAD ref"),
9839018e 61 OPT_BOOLEAN(0, "progress", &progress, "force progress reporting"),
83201998
KH
62 OPT_STRING(0, "depth", &depth, "DEPTH",
63 "deepen history of shallow clone"),
64 OPT_END()
65};
66
e4022ed2
SP
67static void unlock_pack(void)
68{
69 if (transport)
70 transport_unlock_pack(transport);
71}
72
73static void unlock_pack_on_signal(int signo)
74{
75 unlock_pack();
4a16d072 76 sigchain_pop(signo);
e4022ed2
SP
77 raise(signo);
78}
b888d61c 79
85682c19 80static void add_merge_config(struct ref **head,
4577370e 81 const struct ref *remote_refs,
85682c19
SP
82 struct branch *branch,
83 struct ref ***tail)
b888d61c 84{
85682c19 85 int i;
b888d61c 86
85682c19
SP
87 for (i = 0; i < branch->merge_nr; i++) {
88 struct ref *rm, **old_tail = *tail;
89 struct refspec refspec;
90
91 for (rm = *head; rm; rm = rm->next) {
92 if (branch_merge_matches(branch, i, rm->name)) {
b888d61c 93 rm->merge = 1;
85682c19
SP
94 break;
95 }
b888d61c 96 }
85682c19
SP
97 if (rm)
98 continue;
99
9ad7c5ae
JH
100 /*
101 * Not fetched to a tracking branch? We need to fetch
85682c19 102 * it anyway to allow this branch's "branch.$name.merge"
05207a28 103 * to be honored by 'git pull', but we do not have to
9ad7c5ae
JH
104 * fail if branch.$name.merge is misconfigured to point
105 * at a nonexisting branch. If we were indeed called by
05207a28 106 * 'git pull', it will notice the misconfiguration because
9ad7c5ae
JH
107 * there is no entry in the resulting FETCH_HEAD marked
108 * for merging.
85682c19 109 */
8da61a2a 110 memset(&refspec, 0, sizeof(refspec));
85682c19 111 refspec.src = branch->merge[i]->src;
9ad7c5ae 112 get_fetch_map(remote_refs, &refspec, tail, 1);
85682c19
SP
113 for (rm = *old_tail; rm; rm = rm->next)
114 rm->merge = 1;
b888d61c
DB
115 }
116}
117
767f176a
SP
118static void find_non_local_tags(struct transport *transport,
119 struct ref **head,
120 struct ref ***tail);
121
b888d61c
DB
122static struct ref *get_ref_map(struct transport *transport,
123 struct refspec *refs, int ref_count, int tags,
124 int *autotags)
125{
126 int i;
127 struct ref *rm;
128 struct ref *ref_map = NULL;
129 struct ref **tail = &ref_map;
130
4577370e 131 const struct ref *remote_refs = transport_get_remote_refs(transport);
b888d61c 132
83201998 133 if (ref_count || tags == TAGS_SET) {
b888d61c 134 for (i = 0; i < ref_count; i++) {
9ad7c5ae 135 get_fetch_map(remote_refs, &refs[i], &tail, 0);
b888d61c
DB
136 if (refs[i].dst && refs[i].dst[0])
137 *autotags = 1;
138 }
139 /* Merge everything on the command line, but not --tags */
140 for (rm = ref_map; rm; rm = rm->next)
141 rm->merge = 1;
e0aaa29f
DB
142 if (tags == TAGS_SET)
143 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
b888d61c
DB
144 } else {
145 /* Use the defaults */
146 struct remote *remote = transport->remote;
85682c19
SP
147 struct branch *branch = branch_get(NULL);
148 int has_merge = branch_has_merge_config(branch);
3ee1757b
BC
149 if (remote &&
150 (remote->fetch_refspec_nr ||
f31dbdc7 151 /* Note: has_merge implies non-NULL branch->remote_name */
3ee1757b 152 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
b888d61c 153 for (i = 0; i < remote->fetch_refspec_nr; i++) {
9ad7c5ae 154 get_fetch_map(remote_refs, &remote->fetch[i], &tail, 0);
b888d61c
DB
155 if (remote->fetch[i].dst &&
156 remote->fetch[i].dst[0])
157 *autotags = 1;
85682c19 158 if (!i && !has_merge && ref_map &&
cfb8f898 159 !remote->fetch[0].pattern)
85682c19 160 ref_map->merge = 1;
b888d61c 161 }
da0204df
JS
162 /*
163 * if the remote we're fetching from is the same
164 * as given in branch.<name>.remote, we add the
165 * ref given in branch.<name>.merge, too.
f31dbdc7
BC
166 *
167 * Note: has_merge implies non-NULL branch->remote_name
da0204df 168 */
9ad7c5ae
JH
169 if (has_merge &&
170 !strcmp(branch->remote_name, remote->name))
85682c19 171 add_merge_config(&ref_map, remote_refs, branch, &tail);
b888d61c
DB
172 } else {
173 ref_map = get_remote_ref(remote_refs, "HEAD");
9ad7c5ae
JH
174 if (!ref_map)
175 die("Couldn't find remote ref HEAD");
b888d61c 176 ref_map->merge = 1;
5aaf7f2a 177 tail = &ref_map->next;
b888d61c
DB
178 }
179 }
767f176a
SP
180 if (tags == TAGS_DEFAULT && *autotags)
181 find_non_local_tags(transport, &ref_map, &tail);
2467a4fa 182 ref_remove_duplicates(ref_map);
b888d61c
DB
183
184 return ref_map;
185}
186
fa250759
JK
187#define STORE_REF_ERROR_OTHER 1
188#define STORE_REF_ERROR_DF_CONFLICT 2
189
b888d61c
DB
190static int s_update_ref(const char *action,
191 struct ref *ref,
192 int check_old)
193{
194 char msg[1024];
195 char *rla = getenv("GIT_REFLOG_ACTION");
196 static struct ref_lock *lock;
197
28a15401
JS
198 if (dry_run)
199 return 0;
b888d61c 200 if (!rla)
2d324efa 201 rla = default_rla.buf;
b888d61c
DB
202 snprintf(msg, sizeof(msg), "%s: %s", rla, action);
203 lock = lock_any_ref_for_update(ref->name,
204 check_old ? ref->old_sha1 : NULL, 0);
205 if (!lock)
fa250759
JK
206 return errno == ENOTDIR ? STORE_REF_ERROR_DF_CONFLICT :
207 STORE_REF_ERROR_OTHER;
b888d61c 208 if (write_ref_sha1(lock, ref->new_sha1, msg) < 0)
fa250759
JK
209 return errno == ENOTDIR ? STORE_REF_ERROR_DF_CONFLICT :
210 STORE_REF_ERROR_OTHER;
b888d61c
DB
211 return 0;
212}
213
9ef4272b 214#define REFCOL_WIDTH 10
165f3902 215
b888d61c 216static int update_local_ref(struct ref *ref,
165f3902 217 const char *remote,
165f3902 218 char *display)
b888d61c 219{
b888d61c
DB
220 struct commit *current = NULL, *updated;
221 enum object_type type;
222 struct branch *current_branch = branch_get(NULL);
4577e483 223 const char *pretty_ref = prettify_refname(ref->name);
b888d61c 224
165f3902 225 *display = 0;
b888d61c
DB
226 type = sha1_object_info(ref->new_sha1, NULL);
227 if (type < 0)
228 die("object %s not found", sha1_to_hex(ref->new_sha1));
229
b888d61c 230 if (!hashcmp(ref->old_sha1, ref->new_sha1)) {
7f87aff2 231 if (verbosity > 0)
f1863d0d 232 sprintf(display, "= %-*s %-*s -> %s", TRANSPORT_SUMMARY_WIDTH,
9ef4272b
PH
233 "[up to date]", REFCOL_WIDTH, remote,
234 pretty_ref);
b888d61c
DB
235 return 0;
236 }
237
b3abdd9d
SP
238 if (current_branch &&
239 !strcmp(ref->name, current_branch->name) &&
b888d61c
DB
240 !(update_head_ok || is_bare_repository()) &&
241 !is_null_sha1(ref->old_sha1)) {
242 /*
243 * If this is the head, and it's not okay to update
244 * the head, and the old value of the head isn't empty...
245 */
9ef4272b 246 sprintf(display, "! %-*s %-*s -> %s (can't fetch in current branch)",
f1863d0d 247 TRANSPORT_SUMMARY_WIDTH, "[rejected]", REFCOL_WIDTH, remote,
9ef4272b 248 pretty_ref);
b888d61c
DB
249 return 1;
250 }
251
252 if (!is_null_sha1(ref->old_sha1) &&
253 !prefixcmp(ref->name, "refs/tags/")) {
6315472e
JK
254 int r;
255 r = s_update_ref("updating tag", ref, 0);
256 sprintf(display, "%c %-*s %-*s -> %s%s", r ? '!' : '-',
f1863d0d 257 TRANSPORT_SUMMARY_WIDTH, "[tag update]", REFCOL_WIDTH, remote,
6315472e
JK
258 pretty_ref, r ? " (unable to update local ref)" : "");
259 return r;
b888d61c
DB
260 }
261
cfa5b2b7
SP
262 current = lookup_commit_reference_gently(ref->old_sha1, 1);
263 updated = lookup_commit_reference_gently(ref->new_sha1, 1);
b888d61c 264 if (!current || !updated) {
165f3902
NP
265 const char *msg;
266 const char *what;
6315472e 267 int r;
165f3902 268 if (!strncmp(ref->name, "refs/tags/", 10)) {
b888d61c 269 msg = "storing tag";
165f3902
NP
270 what = "[new tag]";
271 }
272 else {
b888d61c 273 msg = "storing head";
165f3902
NP
274 what = "[new branch]";
275 }
276
6315472e
JK
277 r = s_update_ref(msg, ref, 0);
278 sprintf(display, "%c %-*s %-*s -> %s%s", r ? '!' : '*',
f1863d0d 279 TRANSPORT_SUMMARY_WIDTH, what, REFCOL_WIDTH, remote, pretty_ref,
6315472e
JK
280 r ? " (unable to update local ref)" : "");
281 return r;
b888d61c
DB
282 }
283
b888d61c 284 if (in_merge_bases(current, &updated, 1)) {
165f3902 285 char quickref[83];
6315472e 286 int r;
165f3902
NP
287 strcpy(quickref, find_unique_abbrev(current->object.sha1, DEFAULT_ABBREV));
288 strcat(quickref, "..");
289 strcat(quickref, find_unique_abbrev(ref->new_sha1, DEFAULT_ABBREV));
a75d7b54 290 r = s_update_ref("fast-forward", ref, 1);
6315472e 291 sprintf(display, "%c %-*s %-*s -> %s%s", r ? '!' : ' ',
f1863d0d 292 TRANSPORT_SUMMARY_WIDTH, quickref, REFCOL_WIDTH, remote,
6315472e
JK
293 pretty_ref, r ? " (unable to update local ref)" : "");
294 return r;
165f3902
NP
295 } else if (force || ref->force) {
296 char quickref[84];
6315472e 297 int r;
165f3902
NP
298 strcpy(quickref, find_unique_abbrev(current->object.sha1, DEFAULT_ABBREV));
299 strcat(quickref, "...");
300 strcat(quickref, find_unique_abbrev(ref->new_sha1, DEFAULT_ABBREV));
6315472e
JK
301 r = s_update_ref("forced-update", ref, 1);
302 sprintf(display, "%c %-*s %-*s -> %s (%s)", r ? '!' : '+',
f1863d0d 303 TRANSPORT_SUMMARY_WIDTH, quickref, REFCOL_WIDTH, remote,
6315472e
JK
304 pretty_ref,
305 r ? "unable to update local ref" : "forced update");
306 return r;
165f3902 307 } else {
a75d7b54 308 sprintf(display, "! %-*s %-*s -> %s (non-fast-forward)",
f1863d0d 309 TRANSPORT_SUMMARY_WIDTH, "[rejected]", REFCOL_WIDTH, remote,
9ef4272b 310 pretty_ref);
b888d61c
DB
311 return 1;
312 }
b888d61c
DB
313}
314
47abd85b 315static int store_updated_refs(const char *raw_url, const char *remote_name,
f3cb169b 316 struct ref *ref_map)
b888d61c
DB
317{
318 FILE *fp;
319 struct commit *commit;
efb98b44 320 int url_len, i, note_len, shown_url = 0, rc = 0;
b888d61c
DB
321 char note[1024];
322 const char *what, *kind;
323 struct ref *rm;
28a15401 324 char *url, *filename = dry_run ? "/dev/null" : git_path("FETCH_HEAD");
b888d61c 325
d6617c7c
AGR
326 fp = fopen(filename, "a");
327 if (!fp)
328 return error("cannot open %s: %s\n", filename, strerror(errno));
47abd85b 329
fb0cc87e
DB
330 if (raw_url)
331 url = transport_anonymize_url(raw_url);
332 else
333 url = xstrdup("foreign");
b888d61c
DB
334 for (rm = ref_map; rm; rm = rm->next) {
335 struct ref *ref = NULL;
336
337 if (rm->peer_ref) {
338 ref = xcalloc(1, sizeof(*ref) + strlen(rm->peer_ref->name) + 1);
339 strcpy(ref->name, rm->peer_ref->name);
340 hashcpy(ref->old_sha1, rm->peer_ref->old_sha1);
341 hashcpy(ref->new_sha1, rm->old_sha1);
1aad91f5 342 ref->force = rm->peer_ref->force;
b888d61c
DB
343 }
344
cfa5b2b7 345 commit = lookup_commit_reference_gently(rm->old_sha1, 1);
b888d61c
DB
346 if (!commit)
347 rm->merge = 0;
348
349 if (!strcmp(rm->name, "HEAD")) {
350 kind = "";
351 what = "";
352 }
353 else if (!prefixcmp(rm->name, "refs/heads/")) {
354 kind = "branch";
355 what = rm->name + 11;
356 }
357 else if (!prefixcmp(rm->name, "refs/tags/")) {
358 kind = "tag";
359 what = rm->name + 10;
360 }
361 else if (!prefixcmp(rm->name, "refs/remotes/")) {
362 kind = "remote branch";
363 what = rm->name + 13;
364 }
365 else {
366 kind = "";
367 what = rm->name;
368 }
369
370 url_len = strlen(url);
371 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
372 ;
373 url_len = i + 1;
374 if (4 < i && !strncmp(".git", url + i - 3, 4))
375 url_len = i - 3;
376
377 note_len = 0;
378 if (*what) {
379 if (*kind)
380 note_len += sprintf(note + note_len, "%s ",
381 kind);
382 note_len += sprintf(note + note_len, "'%s' of ", what);
383 }
95405ba6
AR
384 note[note_len] = '\0';
385 fprintf(fp, "%s\t%s\t%s",
b888d61c
DB
386 sha1_to_hex(commit ? commit->object.sha1 :
387 rm->old_sha1),
388 rm->merge ? "" : "not-for-merge",
389 note);
95405ba6
AR
390 for (i = 0; i < url_len; ++i)
391 if ('\n' == url[i])
392 fputs("\\n", fp);
393 else
394 fputc(url[i], fp);
395 fputc('\n', fp);
b888d61c 396
730b0200 397 if (ref) {
7f87aff2 398 rc |= update_local_ref(ref, what, note);
730b0200
AG
399 free(ref);
400 } else
f59774ad 401 sprintf(note, "* %-*s %-*s -> FETCH_HEAD",
f1863d0d 402 TRANSPORT_SUMMARY_WIDTH, *kind ? kind : "branch",
f59774ad 403 REFCOL_WIDTH, *what ? what : "HEAD");
f59774ad 404 if (*note) {
7f87aff2 405 if (verbosity >= 0 && !shown_url) {
f59774ad
JK
406 fprintf(stderr, "From %.*s\n",
407 url_len, url);
408 shown_url = 1;
165f3902 409 }
7f87aff2
TA
410 if (verbosity >= 0)
411 fprintf(stderr, " %s\n", note);
165f3902 412 }
b888d61c 413 }
47abd85b 414 free(url);
b888d61c 415 fclose(fp);
fa250759 416 if (rc & STORE_REF_ERROR_DF_CONFLICT)
f3cb169b
JK
417 error("some local refs could not be updated; try running\n"
418 " 'git remote prune %s' to remove any old, conflicting "
419 "branches", remote_name);
efb98b44 420 return rc;
b888d61c
DB
421}
422
4191c356
SP
423/*
424 * We would want to bypass the object transfer altogether if
d9eb0205 425 * everything we are going to fetch already exists and is connected
4191c356
SP
426 * locally.
427 *
d9eb0205 428 * The refs we are going to fetch are in ref_map. If running
4191c356 429 *
d9eb0205 430 * $ git rev-list --objects --stdin --not --all
4191c356 431 *
d9eb0205 432 * (feeding all the refs in ref_map on its standard input)
4191c356
SP
433 * does not error out, that means everything reachable from the
434 * refs we are going to fetch exists and is connected to some of
435 * our existing refs.
436 */
437static int quickfetch(struct ref *ref_map)
438{
439 struct child_process revlist;
440 struct ref *ref;
d9eb0205
JH
441 int err;
442 const char *argv[] = {"rev-list",
443 "--quiet", "--objects", "--stdin", "--not", "--all", NULL};
4191c356
SP
444
445 /*
446 * If we are deepening a shallow clone we already have these
447 * objects reachable. Running rev-list here will return with
448 * a good (0) exit status and we'll bypass the fetch that we
449 * really need to perform. Claiming failure now will ensure
450 * we perform the network exchange to deepen our history.
451 */
452 if (depth)
453 return -1;
454
d9eb0205 455 if (!ref_map)
4191c356
SP
456 return 0;
457
4191c356 458 memset(&revlist, 0, sizeof(revlist));
d9eb0205 459 revlist.argv = argv;
4191c356 460 revlist.git_cmd = 1;
4191c356
SP
461 revlist.no_stdout = 1;
462 revlist.no_stderr = 1;
d9eb0205
JH
463 revlist.in = -1;
464
465 err = start_command(&revlist);
466 if (err) {
467 error("could not run rev-list");
468 return err;
469 }
470
471 /*
472 * If rev-list --stdin encounters an unknown commit, it terminates,
473 * which will cause SIGPIPE in the write loop below.
474 */
475 sigchain_push(SIGPIPE, SIG_IGN);
476
477 for (ref = ref_map; ref; ref = ref->next) {
478 if (write_in_full(revlist.in, sha1_to_hex(ref->old_sha1), 40) < 0 ||
2b7ca830 479 write_str_in_full(revlist.in, "\n") < 0) {
d9eb0205
JH
480 if (errno != EPIPE && errno != EINVAL)
481 error("failed write to rev-list: %s", strerror(errno));
482 err = -1;
483 break;
484 }
485 }
486
487 if (close(revlist.in)) {
488 error("failed to close rev-list's stdin: %s", strerror(errno));
489 err = -1;
490 }
491
492 sigchain_pop(SIGPIPE);
4191c356 493
d9eb0205 494 return finish_command(&revlist) || err;
4191c356
SP
495}
496
b888d61c
DB
497static int fetch_refs(struct transport *transport, struct ref *ref_map)
498{
4191c356
SP
499 int ret = quickfetch(ref_map);
500 if (ret)
501 ret = transport_fetch_refs(transport, ref_map);
b888d61c 502 if (!ret)
f3cb169b
JK
503 ret |= store_updated_refs(transport->url,
504 transport->remote->name,
505 ref_map);
1788c39c 506 transport_unlock_pack(transport);
b888d61c
DB
507 return ret;
508}
509
f360d844
JS
510static int prune_refs(struct transport *transport, struct ref *ref_map)
511{
512 int result = 0;
513 struct ref *ref, *stale_refs = get_stale_heads(transport->remote, ref_map);
514 const char *dangling_msg = dry_run
515 ? " (%s will become dangling)\n"
516 : " (%s has become dangling)\n";
517
518 for (ref = stale_refs; ref; ref = ref->next) {
519 if (!dry_run)
520 result |= delete_ref(ref->name, NULL, 0);
521 if (verbosity >= 0) {
522 fprintf(stderr, " x %-*s %-*s -> %s\n",
f1863d0d 523 TRANSPORT_SUMMARY_WIDTH, "[deleted]",
f360d844
JS
524 REFCOL_WIDTH, "(none)", prettify_refname(ref->name));
525 warn_dangling_symref(stderr, dangling_msg, ref->name);
526 }
527 }
528 free_refs(stale_refs);
529 return result;
530}
531
b888d61c
DB
532static int add_existing(const char *refname, const unsigned char *sha1,
533 int flag, void *cbdata)
534{
c455c87c 535 struct string_list *list = (struct string_list *)cbdata;
78a395d3 536 struct string_list_item *item = string_list_insert(list, refname);
b1a01e1c 537 item->util = (void *)sha1;
b888d61c
DB
538 return 0;
539}
540
cf7f929a
SP
541static int will_fetch(struct ref **head, const unsigned char *sha1)
542{
543 struct ref *rm = *head;
544 while (rm) {
545 if (!hashcmp(rm->old_sha1, sha1))
546 return 1;
547 rm = rm->next;
548 }
549 return 0;
550}
551
c50b2b47
SP
552static void find_non_local_tags(struct transport *transport,
553 struct ref **head,
554 struct ref ***tail)
b888d61c 555{
183113a5
TF
556 struct string_list existing_refs = STRING_LIST_INIT_NODUP;
557 struct string_list remote_refs = STRING_LIST_INIT_NODUP;
4577370e 558 const struct ref *ref;
e984c54a 559 struct string_list_item *item = NULL;
b888d61c
DB
560
561 for_each_ref(add_existing, &existing_refs);
562 for (ref = transport_get_remote_refs(transport); ref; ref = ref->next) {
563 if (prefixcmp(ref->name, "refs/tags"))
564 continue;
565
e984c54a
JP
566 /*
567 * The peeled ref always follows the matching base
568 * ref, so if we see a peeled ref that we don't want
569 * to fetch then we can mark the ref entry in the list
570 * as one to ignore by setting util to NULL.
571 */
aac1d7b8 572 if (!suffixcmp(ref->name, "^{}")) {
e984c54a
JP
573 if (item && !has_sha1_file(ref->old_sha1) &&
574 !will_fetch(head, ref->old_sha1) &&
575 !has_sha1_file(item->util) &&
576 !will_fetch(head, item->util))
577 item->util = NULL;
578 item = NULL;
579 continue;
b888d61c
DB
580 }
581
e984c54a
JP
582 /*
583 * If item is non-NULL here, then we previously saw a
584 * ref not followed by a peeled reference, so we need
585 * to check if it is a lightweight tag that we want to
586 * fetch.
587 */
588 if (item && !has_sha1_file(item->util) &&
589 !will_fetch(head, item->util))
590 item->util = NULL;
b888d61c 591
e984c54a 592 item = NULL;
b888d61c 593
e984c54a
JP
594 /* skip duplicates and refs that we already have */
595 if (string_list_has_string(&remote_refs, ref->name) ||
596 string_list_has_string(&existing_refs, ref->name))
597 continue;
598
78a395d3 599 item = string_list_insert(&remote_refs, ref->name);
e984c54a 600 item->util = (void *)ref->old_sha1;
b888d61c 601 }
c455c87c 602 string_list_clear(&existing_refs, 0);
e984c54a
JP
603
604 /*
605 * We may have a final lightweight tag that needs to be
606 * checked to see if it needs fetching.
607 */
608 if (item && !has_sha1_file(item->util) &&
609 !will_fetch(head, item->util))
610 item->util = NULL;
611
612 /*
8a57c6e9
AR
613 * For all the tags in the remote_refs string list,
614 * add them to the list of refs to be fetched
e984c54a 615 */
8a57c6e9
AR
616 for_each_string_list_item(item, &remote_refs) {
617 /* Unless we have already decided to ignore this item... */
618 if (item->util)
619 {
620 struct ref *rm = alloc_ref(item->string);
621 rm->peer_ref = alloc_ref(item->string);
622 hashcpy(rm->old_sha1, item->util);
623 **tail = rm;
624 *tail = &rm->next;
625 }
626 }
e984c54a
JP
627
628 string_list_clear(&remote_refs, 0);
b888d61c
DB
629}
630
8ee5d731
JS
631static void check_not_current_branch(struct ref *ref_map)
632{
633 struct branch *current_branch = branch_get(NULL);
634
635 if (is_bare_repository() || !current_branch)
636 return;
637
638 for (; ref_map; ref_map = ref_map->next)
639 if (ref_map->peer_ref && !strcmp(current_branch->refname,
640 ref_map->peer_ref->name))
26284f93
AR
641 die("Refusing to fetch into current branch %s "
642 "of non-bare repository", current_branch->refname);
8ee5d731
JS
643}
644
e6cc5104
JH
645static int truncate_fetch_head(void)
646{
647 char *filename = git_path("FETCH_HEAD");
648 FILE *fp = fopen(filename, "w");
649
650 if (!fp)
651 return error("cannot open %s: %s\n", filename, strerror(errno));
652 fclose(fp);
653 return 0;
654}
655
b888d61c
DB
656static int do_fetch(struct transport *transport,
657 struct refspec *refs, int ref_count)
658{
183113a5 659 struct string_list existing_refs = STRING_LIST_INIT_NODUP;
b1a01e1c 660 struct string_list_item *peer_item = NULL;
7f98428d 661 struct ref *ref_map;
b888d61c
DB
662 struct ref *rm;
663 int autotags = (transport->remote->fetch_tags == 1);
b1a01e1c
JP
664
665 for_each_ref(add_existing, &existing_refs);
666
ed368546
DJ
667 if (tags == TAGS_DEFAULT) {
668 if (transport->remote->fetch_tags == 2)
669 tags = TAGS_SET;
670 if (transport->remote->fetch_tags == -1)
671 tags = TAGS_UNSET;
672 }
b888d61c 673
824d5776 674 if (!transport->get_refs_list || !transport->fetch)
b888d61c
DB
675 die("Don't know how to fetch from %s", transport->url);
676
677 /* if not appending, truncate FETCH_HEAD */
28a15401 678 if (!append && !dry_run) {
e6cc5104
JH
679 int errcode = truncate_fetch_head();
680 if (errcode)
681 return errcode;
d6617c7c 682 }
b888d61c
DB
683
684 ref_map = get_ref_map(transport, refs, ref_count, tags, &autotags);
8ee5d731
JS
685 if (!update_head_ok)
686 check_not_current_branch(ref_map);
b888d61c
DB
687
688 for (rm = ref_map; rm; rm = rm->next) {
b1a01e1c 689 if (rm->peer_ref) {
e8c8b713
JP
690 peer_item = string_list_lookup(&existing_refs,
691 rm->peer_ref->name);
b1a01e1c
JP
692 if (peer_item)
693 hashcpy(rm->peer_ref->old_sha1,
694 peer_item->util);
695 }
b888d61c
DB
696 }
697
41fa7d2e
SP
698 if (tags == TAGS_DEFAULT && autotags)
699 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
b888d61c
DB
700 if (fetch_refs(transport, ref_map)) {
701 free_refs(ref_map);
702 return 1;
703 }
f360d844
JS
704 if (prune)
705 prune_refs(transport, ref_map);
7f98428d 706 free_refs(ref_map);
b888d61c
DB
707
708 /* if neither --no-tags nor --tags was specified, do automated tag
709 * following ... */
83201998 710 if (tags == TAGS_DEFAULT && autotags) {
c50b2b47
SP
711 struct ref **tail = &ref_map;
712 ref_map = NULL;
713 find_non_local_tags(transport, &ref_map, &tail);
b888d61c 714 if (ref_map) {
41fa7d2e 715 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
b888d61c
DB
716 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
717 fetch_refs(transport, ref_map);
718 }
719 free_refs(ref_map);
720 }
721
b888d61c
DB
722 return 0;
723}
724
ab865e6e
SP
725static void set_option(const char *name, const char *value)
726{
727 int r = transport_set_option(transport, name, value);
728 if (r < 0)
d7530708 729 die("Option \"%s\" value \"%s\" is not valid for %s",
ab865e6e
SP
730 name, value, transport->url);
731 if (r > 0)
732 warning("Option \"%s\" is ignored for %s\n",
733 name, transport->url);
734}
735
9c4a036b
BG
736static int get_one_remote_for_fetch(struct remote *remote, void *priv)
737{
738 struct string_list *list = priv;
7cc91a2f 739 if (!remote->skip_default_update)
1d2f80fa 740 string_list_append(list, remote->name);
9c4a036b
BG
741 return 0;
742}
743
744struct remote_group_data {
745 const char *name;
746 struct string_list *list;
747};
748
749static int get_remote_group(const char *key, const char *value, void *priv)
750{
751 struct remote_group_data *g = priv;
752
753 if (!prefixcmp(key, "remotes.") &&
754 !strcmp(key + 8, g->name)) {
755 /* split list by white space */
756 int space = strcspn(value, " \t\n");
757 while (*value) {
758 if (space > 1) {
1d2f80fa
JP
759 string_list_append(g->list,
760 xstrndup(value, space));
9c4a036b
BG
761 }
762 value += space + (value[space] != '\0');
763 space = strcspn(value, " \t\n");
764 }
765 }
766
767 return 0;
768}
769
770static int add_remote_or_group(const char *name, struct string_list *list)
771{
772 int prev_nr = list->nr;
66dbfd55
GV
773 struct remote_group_data g;
774 g.name = name; g.list = list;
9c4a036b
BG
775
776 git_config(get_remote_group, &g);
777 if (list->nr == prev_nr) {
778 struct remote *remote;
779 if (!remote_is_configured(name))
780 return 0;
781 remote = remote_get(name);
1d2f80fa 782 string_list_append(list, remote->name);
9c4a036b
BG
783 }
784 return 1;
785}
786
787static int fetch_multiple(struct string_list *list)
788{
789 int i, result = 0;
e6cc5104
JH
790 const char *argv[11] = { "fetch", "--append" };
791 int argc = 2;
9c4a036b 792
28a15401
JS
793 if (dry_run)
794 argv[argc++] = "--dry-run";
f360d844
JS
795 if (prune)
796 argv[argc++] = "--prune";
bba5322a
JH
797 if (update_head_ok)
798 argv[argc++] = "--update-head-ok";
799 if (force)
800 argv[argc++] = "--force";
801 if (keep)
802 argv[argc++] = "--keep";
9c4a036b
BG
803 if (verbosity >= 2)
804 argv[argc++] = "-v";
805 if (verbosity >= 1)
806 argv[argc++] = "-v";
807 else if (verbosity < 0)
808 argv[argc++] = "-q";
809
e6cc5104
JH
810 if (!append && !dry_run) {
811 int errcode = truncate_fetch_head();
812 if (errcode)
813 return errcode;
814 }
815
9c4a036b
BG
816 for (i = 0; i < list->nr; i++) {
817 const char *name = list->items[i].string;
818 argv[argc] = name;
bba5322a 819 argv[argc + 1] = NULL;
9c4a036b
BG
820 if (verbosity >= 0)
821 printf("Fetching %s\n", name);
822 if (run_command_v_opt(argv, RUN_GIT_CMD)) {
823 error("Could not fetch %s", name);
824 result = 1;
825 }
826 }
827
828 return result;
829}
830
831static int fetch_one(struct remote *remote, int argc, const char **argv)
b888d61c 832{
2d324efa 833 int i;
b888d61c
DB
834 static const char **refs = NULL;
835 int ref_nr = 0;
7b7f39ea 836 int exit_code;
b888d61c 837
fa685bdf 838 if (!remote)
d3b9dd13
MM
839 die("No remote repository specified. Please, specify either a URL or a\n"
840 "remote name from which new revisions should be fetched.");
fa685bdf 841
fb0cc87e 842 transport = transport_get(remote, NULL);
9839018e 843 transport_set_verbosity(transport, verbosity, progress);
b888d61c 844 if (upload_pack)
ab865e6e 845 set_option(TRANS_OPT_UPLOADPACK, upload_pack);
b888d61c 846 if (keep)
ab865e6e
SP
847 set_option(TRANS_OPT_KEEP, "yes");
848 if (depth)
849 set_option(TRANS_OPT_DEPTH, depth);
b888d61c 850
9c4a036b 851 if (argc > 0) {
b888d61c 852 int j = 0;
83201998 853 refs = xcalloc(argc + 1, sizeof(const char *));
9c4a036b 854 for (i = 0; i < argc; i++) {
b888d61c
DB
855 if (!strcmp(argv[i], "tag")) {
856 char *ref;
857 i++;
f53423b0
KB
858 if (i >= argc)
859 die("You need to specify a tag name.");
b888d61c
DB
860 ref = xmalloc(strlen(argv[i]) * 2 + 22);
861 strcpy(ref, "refs/tags/");
862 strcat(ref, argv[i]);
863 strcat(ref, ":refs/tags/");
864 strcat(ref, argv[i]);
865 refs[j++] = ref;
866 } else
867 refs[j++] = argv[i];
b888d61c
DB
868 }
869 refs[j] = NULL;
870 ref_nr = j;
b888d61c
DB
871 }
872
57b235a4 873 sigchain_push_common(unlock_pack_on_signal);
e4022ed2 874 atexit(unlock_pack);
7b7f39ea 875 exit_code = do_fetch(transport,
46220ca1 876 parse_fetch_refspec(ref_nr, refs), ref_nr);
7b7f39ea
AR
877 transport_disconnect(transport);
878 transport = NULL;
879 return exit_code;
b888d61c 880}
9c4a036b
BG
881
882int cmd_fetch(int argc, const char **argv, const char *prefix)
883{
884 int i;
183113a5 885 struct string_list list = STRING_LIST_INIT_NODUP;
9c4a036b
BG
886 struct remote *remote;
887 int result = 0;
888
889 /* Record the command line for the reflog */
890 strbuf_addstr(&default_rla, "fetch");
891 for (i = 1; i < argc; i++)
892 strbuf_addf(&default_rla, " %s", argv[i]);
893
894 argc = parse_options(argc, argv, prefix,
895 builtin_fetch_options, builtin_fetch_usage, 0);
896
897 if (all) {
898 if (argc == 1)
899 die("fetch --all does not take a repository argument");
900 else if (argc > 1)
901 die("fetch --all does not make sense with refspecs");
902 (void) for_each_remote(get_one_remote_for_fetch, &list);
903 result = fetch_multiple(&list);
904 } else if (argc == 0) {
905 /* No arguments -- use default remote */
906 remote = remote_get(NULL);
907 result = fetch_one(remote, argc, argv);
16679e37
BG
908 } else if (multiple) {
909 /* All arguments are assumed to be remotes or groups */
910 for (i = 0; i < argc; i++)
911 if (!add_remote_or_group(argv[i], &list))
912 die("No such remote or remote group: %s", argv[i]);
913 result = fetch_multiple(&list);
9c4a036b
BG
914 } else {
915 /* Single remote or group */
916 (void) add_remote_or_group(argv[0], &list);
917 if (list.nr > 1) {
918 /* More than one remote */
919 if (argc > 1)
920 die("Fetching a group and specifying refspecs does not make sense");
921 result = fetch_multiple(&list);
922 } else {
923 /* Zero or one remotes */
924 remote = remote_get(argv[0]);
925 result = fetch_one(remote, argc-1, argv+1);
926 }
927 }
928
929 /* All names were strdup()ed or strndup()ed */
930 list.strdup_strings = 1;
931 string_list_clear(&list, 0);
932
933 return result;
934}