Fix another invocation of git from gitk with an overly long command-line
[git/dscho.git] / builtin / fetch.c
blobfab3fce5122fc8ea8da0688e4b0e207ce4097127
1 /*
2 * "git fetch"
3 */
4 #include "cache.h"
5 #include "refs.h"
6 #include "commit.h"
7 #include "builtin.h"
8 #include "string-list.h"
9 #include "remote.h"
10 #include "transport.h"
11 #include "run-command.h"
12 #include "parse-options.h"
13 #include "sigchain.h"
14 #include "transport.h"
16 static const char * const builtin_fetch_usage[] = {
17 "git fetch [<options>] [<repository> [<refspec>...]]",
18 "git fetch [<options>] <group>",
19 "git fetch --multiple [<options>] [<repository> | <group>]...",
20 "git fetch --all [<options>]",
21 NULL
24 enum {
25 TAGS_UNSET = 0,
26 TAGS_DEFAULT = 1,
27 TAGS_SET = 2
30 static int all, append, dry_run, force, keep, multiple, prune, update_head_ok, verbosity;
31 static int progress;
32 static int tags = TAGS_DEFAULT;
33 static const char *depth;
34 static const char *upload_pack;
35 static struct strbuf default_rla = STRBUF_INIT;
36 static struct transport *transport;
38 static struct option builtin_fetch_options[] = {
39 OPT__VERBOSITY(&verbosity),
40 OPT_BOOLEAN(0, "all", &all,
41 "fetch from all remotes"),
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"),
48 OPT_BOOLEAN('m', "multiple", &multiple,
49 "fetch from multiple remotes"),
50 OPT_SET_INT('t', "tags", &tags,
51 "fetch all tags and associated objects", TAGS_SET),
52 OPT_SET_INT('n', NULL, &tags,
53 "do not fetch all tags (--no-tags)", TAGS_UNSET),
54 OPT_BOOLEAN('p', "prune", &prune,
55 "prune tracking branches no longer on remote"),
56 OPT_BOOLEAN(0, "dry-run", &dry_run,
57 "dry run"),
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"),
61 OPT_BOOLEAN(0, "progress", &progress, "force progress reporting"),
62 OPT_STRING(0, "depth", &depth, "DEPTH",
63 "deepen history of shallow clone"),
64 OPT_END()
67 static void unlock_pack(void)
69 if (transport)
70 transport_unlock_pack(transport);
73 static void unlock_pack_on_signal(int signo)
75 unlock_pack();
76 sigchain_pop(signo);
77 raise(signo);
80 static void add_merge_config(struct ref **head,
81 const struct ref *remote_refs,
82 struct branch *branch,
83 struct ref ***tail)
85 int i;
87 for (i = 0; i < branch->merge_nr; i++) {
88 struct ref *rm, **old_tail = *tail;
89 struct refspec refspec;
91 for (rm = *head; rm; rm = rm->next) {
92 if (branch_merge_matches(branch, i, rm->name)) {
93 rm->merge = 1;
94 break;
97 if (rm)
98 continue;
101 * Not fetched to a tracking branch? We need to fetch
102 * it anyway to allow this branch's "branch.$name.merge"
103 * to be honored by 'git pull', but we do not have to
104 * fail if branch.$name.merge is misconfigured to point
105 * at a nonexisting branch. If we were indeed called by
106 * 'git pull', it will notice the misconfiguration because
107 * there is no entry in the resulting FETCH_HEAD marked
108 * for merging.
110 memset(&refspec, 0, sizeof(refspec));
111 refspec.src = branch->merge[i]->src;
112 get_fetch_map(remote_refs, &refspec, tail, 1);
113 for (rm = *old_tail; rm; rm = rm->next)
114 rm->merge = 1;
118 static void find_non_local_tags(struct transport *transport,
119 struct ref **head,
120 struct ref ***tail);
122 static struct ref *get_ref_map(struct transport *transport,
123 struct refspec *refs, int ref_count, int tags,
124 int *autotags)
126 int i;
127 struct ref *rm;
128 struct ref *ref_map = NULL;
129 struct ref **tail = &ref_map;
131 const struct ref *remote_refs = transport_get_remote_refs(transport);
133 if (ref_count || tags == TAGS_SET) {
134 for (i = 0; i < ref_count; i++) {
135 get_fetch_map(remote_refs, &refs[i], &tail, 0);
136 if (refs[i].dst && refs[i].dst[0])
137 *autotags = 1;
139 /* Merge everything on the command line, but not --tags */
140 for (rm = ref_map; rm; rm = rm->next)
141 rm->merge = 1;
142 if (tags == TAGS_SET)
143 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
144 } else {
145 /* Use the defaults */
146 struct remote *remote = transport->remote;
147 struct branch *branch = branch_get(NULL);
148 int has_merge = branch_has_merge_config(branch);
149 if (remote && (remote->fetch_refspec_nr || has_merge)) {
150 for (i = 0; i < remote->fetch_refspec_nr; i++) {
151 get_fetch_map(remote_refs, &remote->fetch[i], &tail, 0);
152 if (remote->fetch[i].dst &&
153 remote->fetch[i].dst[0])
154 *autotags = 1;
155 if (!i && !has_merge && ref_map &&
156 !remote->fetch[0].pattern)
157 ref_map->merge = 1;
160 * if the remote we're fetching from is the same
161 * as given in branch.<name>.remote, we add the
162 * ref given in branch.<name>.merge, too.
164 if (has_merge &&
165 !strcmp(branch->remote_name, remote->name))
166 add_merge_config(&ref_map, remote_refs, branch, &tail);
167 } else {
168 ref_map = get_remote_ref(remote_refs, "HEAD");
169 if (!ref_map)
170 die("Couldn't find remote ref HEAD");
171 ref_map->merge = 1;
172 tail = &ref_map->next;
175 if (tags == TAGS_DEFAULT && *autotags)
176 find_non_local_tags(transport, &ref_map, &tail);
177 ref_remove_duplicates(ref_map);
179 return ref_map;
182 #define STORE_REF_ERROR_OTHER 1
183 #define STORE_REF_ERROR_DF_CONFLICT 2
185 static int s_update_ref(const char *action,
186 struct ref *ref,
187 int check_old)
189 char msg[1024];
190 char *rla = getenv("GIT_REFLOG_ACTION");
191 static struct ref_lock *lock;
193 if (dry_run)
194 return 0;
195 if (!rla)
196 rla = default_rla.buf;
197 snprintf(msg, sizeof(msg), "%s: %s", rla, action);
198 lock = lock_any_ref_for_update(ref->name,
199 check_old ? ref->old_sha1 : NULL, 0);
200 if (!lock)
201 return errno == ENOTDIR ? STORE_REF_ERROR_DF_CONFLICT :
202 STORE_REF_ERROR_OTHER;
203 if (write_ref_sha1(lock, ref->new_sha1, msg) < 0)
204 return errno == ENOTDIR ? STORE_REF_ERROR_DF_CONFLICT :
205 STORE_REF_ERROR_OTHER;
206 return 0;
209 #define REFCOL_WIDTH 10
211 static int update_local_ref(struct ref *ref,
212 const char *remote,
213 char *display)
215 struct commit *current = NULL, *updated;
216 enum object_type type;
217 struct branch *current_branch = branch_get(NULL);
218 const char *pretty_ref = prettify_refname(ref->name);
220 *display = 0;
221 type = sha1_object_info(ref->new_sha1, NULL);
222 if (type < 0)
223 die("object %s not found", sha1_to_hex(ref->new_sha1));
225 if (!hashcmp(ref->old_sha1, ref->new_sha1)) {
226 if (verbosity > 0)
227 sprintf(display, "= %-*s %-*s -> %s", TRANSPORT_SUMMARY_WIDTH,
228 "[up to date]", REFCOL_WIDTH, remote,
229 pretty_ref);
230 return 0;
233 if (current_branch &&
234 !strcmp(ref->name, current_branch->name) &&
235 !(update_head_ok || is_bare_repository()) &&
236 !is_null_sha1(ref->old_sha1)) {
238 * If this is the head, and it's not okay to update
239 * the head, and the old value of the head isn't empty...
241 sprintf(display, "! %-*s %-*s -> %s (can't fetch in current branch)",
242 TRANSPORT_SUMMARY_WIDTH, "[rejected]", REFCOL_WIDTH, remote,
243 pretty_ref);
244 return 1;
247 if (!is_null_sha1(ref->old_sha1) &&
248 !prefixcmp(ref->name, "refs/tags/")) {
249 int r;
250 r = s_update_ref("updating tag", ref, 0);
251 sprintf(display, "%c %-*s %-*s -> %s%s", r ? '!' : '-',
252 TRANSPORT_SUMMARY_WIDTH, "[tag update]", REFCOL_WIDTH, remote,
253 pretty_ref, r ? " (unable to update local ref)" : "");
254 return r;
257 current = lookup_commit_reference_gently(ref->old_sha1, 1);
258 updated = lookup_commit_reference_gently(ref->new_sha1, 1);
259 if (!current || !updated) {
260 const char *msg;
261 const char *what;
262 int r;
263 if (!strncmp(ref->name, "refs/tags/", 10)) {
264 msg = "storing tag";
265 what = "[new tag]";
267 else {
268 msg = "storing head";
269 what = "[new branch]";
272 r = s_update_ref(msg, ref, 0);
273 sprintf(display, "%c %-*s %-*s -> %s%s", r ? '!' : '*',
274 TRANSPORT_SUMMARY_WIDTH, what, REFCOL_WIDTH, remote, pretty_ref,
275 r ? " (unable to update local ref)" : "");
276 return r;
279 if (in_merge_bases(current, &updated, 1)) {
280 char quickref[83];
281 int r;
282 strcpy(quickref, find_unique_abbrev(current->object.sha1, DEFAULT_ABBREV));
283 strcat(quickref, "..");
284 strcat(quickref, find_unique_abbrev(ref->new_sha1, DEFAULT_ABBREV));
285 r = s_update_ref("fast-forward", ref, 1);
286 sprintf(display, "%c %-*s %-*s -> %s%s", r ? '!' : ' ',
287 TRANSPORT_SUMMARY_WIDTH, quickref, REFCOL_WIDTH, remote,
288 pretty_ref, r ? " (unable to update local ref)" : "");
289 return r;
290 } else if (force || ref->force) {
291 char quickref[84];
292 int r;
293 strcpy(quickref, find_unique_abbrev(current->object.sha1, DEFAULT_ABBREV));
294 strcat(quickref, "...");
295 strcat(quickref, find_unique_abbrev(ref->new_sha1, DEFAULT_ABBREV));
296 r = s_update_ref("forced-update", ref, 1);
297 sprintf(display, "%c %-*s %-*s -> %s (%s)", r ? '!' : '+',
298 TRANSPORT_SUMMARY_WIDTH, quickref, REFCOL_WIDTH, remote,
299 pretty_ref,
300 r ? "unable to update local ref" : "forced update");
301 return r;
302 } else {
303 sprintf(display, "! %-*s %-*s -> %s (non-fast-forward)",
304 TRANSPORT_SUMMARY_WIDTH, "[rejected]", REFCOL_WIDTH, remote,
305 pretty_ref);
306 return 1;
310 static int store_updated_refs(const char *raw_url, const char *remote_name,
311 struct ref *ref_map)
313 FILE *fp;
314 struct commit *commit;
315 int url_len, i, note_len, shown_url = 0, rc = 0;
316 char note[1024];
317 const char *what, *kind;
318 struct ref *rm;
319 char *url, *filename = dry_run ? "/dev/null" : git_path("FETCH_HEAD");
321 fp = fopen(filename, "a");
322 if (!fp)
323 return error("cannot open %s: %s\n", filename, strerror(errno));
325 if (raw_url)
326 url = transport_anonymize_url(raw_url);
327 else
328 url = xstrdup("foreign");
329 for (rm = ref_map; rm; rm = rm->next) {
330 struct ref *ref = NULL;
332 if (rm->peer_ref) {
333 ref = xcalloc(1, sizeof(*ref) + strlen(rm->peer_ref->name) + 1);
334 strcpy(ref->name, rm->peer_ref->name);
335 hashcpy(ref->old_sha1, rm->peer_ref->old_sha1);
336 hashcpy(ref->new_sha1, rm->old_sha1);
337 ref->force = rm->peer_ref->force;
340 commit = lookup_commit_reference_gently(rm->old_sha1, 1);
341 if (!commit)
342 rm->merge = 0;
344 if (!strcmp(rm->name, "HEAD")) {
345 kind = "";
346 what = "";
348 else if (!prefixcmp(rm->name, "refs/heads/")) {
349 kind = "branch";
350 what = rm->name + 11;
352 else if (!prefixcmp(rm->name, "refs/tags/")) {
353 kind = "tag";
354 what = rm->name + 10;
356 else if (!prefixcmp(rm->name, "refs/remotes/")) {
357 kind = "remote branch";
358 what = rm->name + 13;
360 else {
361 kind = "";
362 what = rm->name;
365 url_len = strlen(url);
366 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
368 url_len = i + 1;
369 if (4 < i && !strncmp(".git", url + i - 3, 4))
370 url_len = i - 3;
372 note_len = 0;
373 if (*what) {
374 if (*kind)
375 note_len += sprintf(note + note_len, "%s ",
376 kind);
377 note_len += sprintf(note + note_len, "'%s' of ", what);
379 note[note_len] = '\0';
380 fprintf(fp, "%s\t%s\t%s",
381 sha1_to_hex(commit ? commit->object.sha1 :
382 rm->old_sha1),
383 rm->merge ? "" : "not-for-merge",
384 note);
385 for (i = 0; i < url_len; ++i)
386 if ('\n' == url[i])
387 fputs("\\n", fp);
388 else
389 fputc(url[i], fp);
390 fputc('\n', fp);
392 if (ref) {
393 rc |= update_local_ref(ref, what, note);
394 free(ref);
395 } else
396 sprintf(note, "* %-*s %-*s -> FETCH_HEAD",
397 TRANSPORT_SUMMARY_WIDTH, *kind ? kind : "branch",
398 REFCOL_WIDTH, *what ? what : "HEAD");
399 if (*note) {
400 if (verbosity >= 0 && !shown_url) {
401 fprintf(stderr, "From %.*s\n",
402 url_len, url);
403 shown_url = 1;
405 if (verbosity >= 0)
406 fprintf(stderr, " %s\n", note);
409 free(url);
410 fclose(fp);
411 if (rc & STORE_REF_ERROR_DF_CONFLICT)
412 error("some local refs could not be updated; try running\n"
413 " 'git remote prune %s' to remove any old, conflicting "
414 "branches", remote_name);
415 return rc;
419 * We would want to bypass the object transfer altogether if
420 * everything we are going to fetch already exists and is connected
421 * locally.
423 * The refs we are going to fetch are in ref_map. If running
425 * $ git rev-list --objects --stdin --not --all
427 * (feeding all the refs in ref_map on its standard input)
428 * does not error out, that means everything reachable from the
429 * refs we are going to fetch exists and is connected to some of
430 * our existing refs.
432 static int quickfetch(struct ref *ref_map)
434 struct child_process revlist;
435 struct ref *ref;
436 int err;
437 const char *argv[] = {"rev-list",
438 "--quiet", "--objects", "--stdin", "--not", "--all", NULL};
441 * If we are deepening a shallow clone we already have these
442 * objects reachable. Running rev-list here will return with
443 * a good (0) exit status and we'll bypass the fetch that we
444 * really need to perform. Claiming failure now will ensure
445 * we perform the network exchange to deepen our history.
447 if (depth)
448 return -1;
450 if (!ref_map)
451 return 0;
453 memset(&revlist, 0, sizeof(revlist));
454 revlist.argv = argv;
455 revlist.git_cmd = 1;
456 revlist.no_stdout = 1;
457 revlist.no_stderr = 1;
458 revlist.in = -1;
460 err = start_command(&revlist);
461 if (err) {
462 error("could not run rev-list");
463 return err;
467 * If rev-list --stdin encounters an unknown commit, it terminates,
468 * which will cause SIGPIPE in the write loop below.
470 sigchain_push(SIGPIPE, SIG_IGN);
472 for (ref = ref_map; ref; ref = ref->next) {
473 if (write_in_full(revlist.in, sha1_to_hex(ref->old_sha1), 40) < 0 ||
474 write_str_in_full(revlist.in, "\n") < 0) {
475 if (errno != EPIPE && errno != EINVAL)
476 error("failed write to rev-list: %s", strerror(errno));
477 err = -1;
478 break;
482 if (close(revlist.in)) {
483 error("failed to close rev-list's stdin: %s", strerror(errno));
484 err = -1;
487 sigchain_pop(SIGPIPE);
489 return finish_command(&revlist) || err;
492 static int fetch_refs(struct transport *transport, struct ref *ref_map)
494 int ret = quickfetch(ref_map);
495 if (ret)
496 ret = transport_fetch_refs(transport, ref_map);
497 if (!ret)
498 ret |= store_updated_refs(transport->url,
499 transport->remote->name,
500 ref_map);
501 transport_unlock_pack(transport);
502 return ret;
505 static int prune_refs(struct transport *transport, struct ref *ref_map)
507 int result = 0;
508 struct ref *ref, *stale_refs = get_stale_heads(transport->remote, ref_map);
509 const char *dangling_msg = dry_run
510 ? " (%s will become dangling)\n"
511 : " (%s has become dangling)\n";
513 for (ref = stale_refs; ref; ref = ref->next) {
514 if (!dry_run)
515 result |= delete_ref(ref->name, NULL, 0);
516 if (verbosity >= 0) {
517 fprintf(stderr, " x %-*s %-*s -> %s\n",
518 TRANSPORT_SUMMARY_WIDTH, "[deleted]",
519 REFCOL_WIDTH, "(none)", prettify_refname(ref->name));
520 warn_dangling_symref(stderr, dangling_msg, ref->name);
523 free_refs(stale_refs);
524 return result;
527 static int add_existing(const char *refname, const unsigned char *sha1,
528 int flag, void *cbdata)
530 struct string_list *list = (struct string_list *)cbdata;
531 struct string_list_item *item = string_list_insert(list, refname);
532 item->util = (void *)sha1;
533 return 0;
536 static int will_fetch(struct ref **head, const unsigned char *sha1)
538 struct ref *rm = *head;
539 while (rm) {
540 if (!hashcmp(rm->old_sha1, sha1))
541 return 1;
542 rm = rm->next;
544 return 0;
547 static void find_non_local_tags(struct transport *transport,
548 struct ref **head,
549 struct ref ***tail)
551 struct string_list existing_refs = STRING_LIST_INIT_NODUP;
552 struct string_list remote_refs = STRING_LIST_INIT_NODUP;
553 const struct ref *ref;
554 struct string_list_item *item = NULL;
556 for_each_ref(add_existing, &existing_refs);
557 for (ref = transport_get_remote_refs(transport); ref; ref = ref->next) {
558 if (prefixcmp(ref->name, "refs/tags"))
559 continue;
562 * The peeled ref always follows the matching base
563 * ref, so if we see a peeled ref that we don't want
564 * to fetch then we can mark the ref entry in the list
565 * as one to ignore by setting util to NULL.
567 if (!suffixcmp(ref->name, "^{}")) {
568 if (item && !has_sha1_file(ref->old_sha1) &&
569 !will_fetch(head, ref->old_sha1) &&
570 !has_sha1_file(item->util) &&
571 !will_fetch(head, item->util))
572 item->util = NULL;
573 item = NULL;
574 continue;
578 * If item is non-NULL here, then we previously saw a
579 * ref not followed by a peeled reference, so we need
580 * to check if it is a lightweight tag that we want to
581 * fetch.
583 if (item && !has_sha1_file(item->util) &&
584 !will_fetch(head, item->util))
585 item->util = NULL;
587 item = NULL;
589 /* skip duplicates and refs that we already have */
590 if (string_list_has_string(&remote_refs, ref->name) ||
591 string_list_has_string(&existing_refs, ref->name))
592 continue;
594 item = string_list_insert(&remote_refs, ref->name);
595 item->util = (void *)ref->old_sha1;
597 string_list_clear(&existing_refs, 0);
600 * We may have a final lightweight tag that needs to be
601 * checked to see if it needs fetching.
603 if (item && !has_sha1_file(item->util) &&
604 !will_fetch(head, item->util))
605 item->util = NULL;
608 * For all the tags in the remote_refs string list,
609 * add them to the list of refs to be fetched
611 for_each_string_list_item(item, &remote_refs) {
612 /* Unless we have already decided to ignore this item... */
613 if (item->util)
615 struct ref *rm = alloc_ref(item->string);
616 rm->peer_ref = alloc_ref(item->string);
617 hashcpy(rm->old_sha1, item->util);
618 **tail = rm;
619 *tail = &rm->next;
623 string_list_clear(&remote_refs, 0);
626 static void check_not_current_branch(struct ref *ref_map)
628 struct branch *current_branch = branch_get(NULL);
630 if (is_bare_repository() || !current_branch)
631 return;
633 for (; ref_map; ref_map = ref_map->next)
634 if (ref_map->peer_ref && !strcmp(current_branch->refname,
635 ref_map->peer_ref->name))
636 die("Refusing to fetch into current branch %s "
637 "of non-bare repository", current_branch->refname);
640 static int truncate_fetch_head(void)
642 char *filename = git_path("FETCH_HEAD");
643 FILE *fp = fopen(filename, "w");
645 if (!fp)
646 return error("cannot open %s: %s\n", filename, strerror(errno));
647 fclose(fp);
648 return 0;
651 static int do_fetch(struct transport *transport,
652 struct refspec *refs, int ref_count)
654 struct string_list existing_refs = STRING_LIST_INIT_NODUP;
655 struct string_list_item *peer_item = NULL;
656 struct ref *ref_map;
657 struct ref *rm;
658 int autotags = (transport->remote->fetch_tags == 1);
660 for_each_ref(add_existing, &existing_refs);
662 if (tags == TAGS_DEFAULT) {
663 if (transport->remote->fetch_tags == 2)
664 tags = TAGS_SET;
665 if (transport->remote->fetch_tags == -1)
666 tags = TAGS_UNSET;
669 if (!transport->get_refs_list || !transport->fetch)
670 die("Don't know how to fetch from %s", transport->url);
672 /* if not appending, truncate FETCH_HEAD */
673 if (!append && !dry_run) {
674 int errcode = truncate_fetch_head();
675 if (errcode)
676 return errcode;
679 ref_map = get_ref_map(transport, refs, ref_count, tags, &autotags);
680 if (!update_head_ok)
681 check_not_current_branch(ref_map);
683 for (rm = ref_map; rm; rm = rm->next) {
684 if (rm->peer_ref) {
685 peer_item = string_list_lookup(&existing_refs,
686 rm->peer_ref->name);
687 if (peer_item)
688 hashcpy(rm->peer_ref->old_sha1,
689 peer_item->util);
693 if (tags == TAGS_DEFAULT && autotags)
694 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
695 if (fetch_refs(transport, ref_map)) {
696 free_refs(ref_map);
697 return 1;
699 if (prune)
700 prune_refs(transport, ref_map);
701 free_refs(ref_map);
703 /* if neither --no-tags nor --tags was specified, do automated tag
704 * following ... */
705 if (tags == TAGS_DEFAULT && autotags) {
706 struct ref **tail = &ref_map;
707 ref_map = NULL;
708 find_non_local_tags(transport, &ref_map, &tail);
709 if (ref_map) {
710 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
711 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
712 fetch_refs(transport, ref_map);
714 free_refs(ref_map);
717 return 0;
720 static void set_option(const char *name, const char *value)
722 int r = transport_set_option(transport, name, value);
723 if (r < 0)
724 die("Option \"%s\" value \"%s\" is not valid for %s",
725 name, value, transport->url);
726 if (r > 0)
727 warning("Option \"%s\" is ignored for %s\n",
728 name, transport->url);
731 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
733 struct string_list *list = priv;
734 if (!remote->skip_default_update)
735 string_list_append(list, remote->name);
736 return 0;
739 struct remote_group_data {
740 const char *name;
741 struct string_list *list;
744 static int get_remote_group(const char *key, const char *value, void *priv)
746 struct remote_group_data *g = priv;
748 if (!prefixcmp(key, "remotes.") &&
749 !strcmp(key + 8, g->name)) {
750 /* split list by white space */
751 int space = strcspn(value, " \t\n");
752 while (*value) {
753 if (space > 1) {
754 string_list_append(g->list,
755 xstrndup(value, space));
757 value += space + (value[space] != '\0');
758 space = strcspn(value, " \t\n");
762 return 0;
765 static int add_remote_or_group(const char *name, struct string_list *list)
767 int prev_nr = list->nr;
768 struct remote_group_data g;
769 g.name = name; g.list = list;
771 git_config(get_remote_group, &g);
772 if (list->nr == prev_nr) {
773 struct remote *remote;
774 if (!remote_is_configured(name))
775 return 0;
776 remote = remote_get(name);
777 string_list_append(list, remote->name);
779 return 1;
782 static int fetch_multiple(struct string_list *list)
784 int i, result = 0;
785 const char *argv[11] = { "fetch", "--append" };
786 int argc = 2;
788 if (dry_run)
789 argv[argc++] = "--dry-run";
790 if (prune)
791 argv[argc++] = "--prune";
792 if (update_head_ok)
793 argv[argc++] = "--update-head-ok";
794 if (force)
795 argv[argc++] = "--force";
796 if (keep)
797 argv[argc++] = "--keep";
798 if (verbosity >= 2)
799 argv[argc++] = "-v";
800 if (verbosity >= 1)
801 argv[argc++] = "-v";
802 else if (verbosity < 0)
803 argv[argc++] = "-q";
805 if (!append && !dry_run) {
806 int errcode = truncate_fetch_head();
807 if (errcode)
808 return errcode;
811 for (i = 0; i < list->nr; i++) {
812 const char *name = list->items[i].string;
813 argv[argc] = name;
814 argv[argc + 1] = NULL;
815 if (verbosity >= 0)
816 printf("Fetching %s\n", name);
817 if (run_command_v_opt(argv, RUN_GIT_CMD)) {
818 error("Could not fetch %s", name);
819 result = 1;
823 return result;
826 static int fetch_one(struct remote *remote, int argc, const char **argv)
828 int i;
829 static const char **refs = NULL;
830 int ref_nr = 0;
831 int exit_code;
833 if (!remote)
834 die("No remote repository specified. Please, specify either a URL or a\n"
835 "remote name from which new revisions should be fetched.");
837 transport = transport_get(remote, NULL);
838 transport_set_verbosity(transport, verbosity, progress);
839 if (upload_pack)
840 set_option(TRANS_OPT_UPLOADPACK, upload_pack);
841 if (keep)
842 set_option(TRANS_OPT_KEEP, "yes");
843 if (depth)
844 set_option(TRANS_OPT_DEPTH, depth);
846 if (argc > 0) {
847 int j = 0;
848 refs = xcalloc(argc + 1, sizeof(const char *));
849 for (i = 0; i < argc; i++) {
850 if (!strcmp(argv[i], "tag")) {
851 char *ref;
852 i++;
853 if (i >= argc)
854 die("You need to specify a tag name.");
855 ref = xmalloc(strlen(argv[i]) * 2 + 22);
856 strcpy(ref, "refs/tags/");
857 strcat(ref, argv[i]);
858 strcat(ref, ":refs/tags/");
859 strcat(ref, argv[i]);
860 refs[j++] = ref;
861 } else
862 refs[j++] = argv[i];
864 refs[j] = NULL;
865 ref_nr = j;
868 sigchain_push_common(unlock_pack_on_signal);
869 atexit(unlock_pack);
870 exit_code = do_fetch(transport,
871 parse_fetch_refspec(ref_nr, refs), ref_nr);
872 transport_disconnect(transport);
873 transport = NULL;
874 return exit_code;
877 int cmd_fetch(int argc, const char **argv, const char *prefix)
879 int i;
880 struct string_list list = STRING_LIST_INIT_NODUP;
881 struct remote *remote;
882 int result = 0;
884 /* Record the command line for the reflog */
885 strbuf_addstr(&default_rla, "fetch");
886 for (i = 1; i < argc; i++)
887 strbuf_addf(&default_rla, " %s", argv[i]);
889 argc = parse_options(argc, argv, prefix,
890 builtin_fetch_options, builtin_fetch_usage, 0);
892 if (all) {
893 if (argc == 1)
894 die("fetch --all does not take a repository argument");
895 else if (argc > 1)
896 die("fetch --all does not make sense with refspecs");
897 (void) for_each_remote(get_one_remote_for_fetch, &list);
898 result = fetch_multiple(&list);
899 } else if (argc == 0) {
900 /* No arguments -- use default remote */
901 remote = remote_get(NULL);
902 result = fetch_one(remote, argc, argv);
903 } else if (multiple) {
904 /* All arguments are assumed to be remotes or groups */
905 for (i = 0; i < argc; i++)
906 if (!add_remote_or_group(argv[i], &list))
907 die("No such remote or remote group: %s", argv[i]);
908 result = fetch_multiple(&list);
909 } else {
910 /* Single remote or group */
911 (void) add_remote_or_group(argv[0], &list);
912 if (list.nr > 1) {
913 /* More than one remote */
914 if (argc > 1)
915 die("Fetching a group and specifying refspecs does not make sense");
916 result = fetch_multiple(&list);
917 } else {
918 /* Zero or one remotes */
919 remote = remote_get(argv[0]);
920 result = fetch_one(remote, argc-1, argv+1);
924 /* All names were strdup()ed or strndup()ed */
925 list.strdup_strings = 1;
926 string_list_clear(&list, 0);
928 return result;