2 #include "parse-options.h"
5 #include "string-list.h"
7 #include "run-command.h"
9 #include "argv-array.h"
11 static const char * const builtin_remote_usage[] = {
12 N_("git remote [-v | --verbose]"),
13 N_("git remote add [-t <branch>] [-m <master>] [-f] [--tags | --no-tags] [--mirror=<fetch|push>] <name> <url>"),
14 N_("git remote rename <old> <new>"),
15 N_("git remote remove <name>"),
16 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
17 N_("git remote [-v | --verbose] show [-n] <name>"),
18 N_("git remote prune [-n | --dry-run] <name>"),
19 N_("git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"),
20 N_("git remote set-branches [--add] <name> <branch>..."),
21 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
22 N_("git remote set-url --add <name> <newurl>"),
23 N_("git remote set-url --delete <name> <url>"),
27 static const char * const builtin_remote_add_usage[] = {
28 N_("git remote add [<options>] <name> <url>"),
32 static const char * const builtin_remote_rename_usage[] = {
33 N_("git remote rename <old> <new>"),
37 static const char * const builtin_remote_rm_usage[] = {
38 N_("git remote remove <name>"),
42 static const char * const builtin_remote_sethead_usage[] = {
43 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
47 static const char * const builtin_remote_setbranches_usage[] = {
48 N_("git remote set-branches <name> <branch>..."),
49 N_("git remote set-branches --add <name> <branch>..."),
53 static const char * const builtin_remote_show_usage[] = {
54 N_("git remote show [<options>] <name>"),
58 static const char * const builtin_remote_prune_usage[] = {
59 N_("git remote prune [<options>] <name>"),
63 static const char * const builtin_remote_update_usage[] = {
64 N_("git remote update [<options>] [<group> | <remote>]..."),
68 static const char * const builtin_remote_seturl_usage[] = {
69 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
70 N_("git remote set-url --add <name> <newurl>"),
71 N_("git remote set-url --delete <name> <url>"),
75 #define GET_REF_STATES (1<<0)
76 #define GET_HEAD_NAMES (1<<1)
77 #define GET_PUSH_REF_STATES (1<<2)
81 static int fetch_remote(const char *name)
83 const char *argv[] = { "fetch", name, NULL, NULL };
88 printf_ln(_("Updating %s"), name);
89 if (run_command_v_opt(argv, RUN_GIT_CMD))
90 return error(_("Could not fetch %s"), name);
100 #define MIRROR_NONE 0
101 #define MIRROR_FETCH 1
102 #define MIRROR_PUSH 2
103 #define MIRROR_BOTH (MIRROR_FETCH|MIRROR_PUSH)
105 static int add_branch(const char *key, const char *branchname,
106 const char *remotename, int mirror, struct strbuf *tmp)
109 strbuf_addch(tmp, '+');
111 strbuf_addf(tmp, "refs/%s:refs/%s",
112 branchname, branchname);
114 strbuf_addf(tmp, "refs/heads/%s:refs/remotes/%s/%s",
115 branchname, remotename, branchname);
116 return git_config_set_multivar(key, tmp->buf, "^$", 0);
119 static const char mirror_advice[] =
120 N_("--mirror is dangerous and deprecated; please\n"
121 "\t use --mirror=fetch or --mirror=push instead");
123 static int parse_mirror_opt(const struct option *opt, const char *arg, int not)
125 unsigned *mirror = opt->value;
127 *mirror = MIRROR_NONE;
129 warning("%s", _(mirror_advice));
130 *mirror = MIRROR_BOTH;
132 else if (!strcmp(arg, "fetch"))
133 *mirror = MIRROR_FETCH;
134 else if (!strcmp(arg, "push"))
135 *mirror = MIRROR_PUSH;
137 return error(_("unknown mirror argument: %s"), arg);
141 static int add(int argc, const char **argv)
143 int fetch = 0, fetch_tags = TAGS_DEFAULT;
144 unsigned mirror = MIRROR_NONE;
145 struct string_list track = STRING_LIST_INIT_NODUP;
146 const char *master = NULL;
147 struct remote *remote;
148 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
149 const char *name, *url;
152 struct option options[] = {
153 OPT_BOOL('f', "fetch", &fetch, N_("fetch the remote branches")),
154 OPT_SET_INT(0, "tags", &fetch_tags,
155 N_("import all tags and associated objects when fetching"),
157 OPT_SET_INT(0, NULL, &fetch_tags,
158 N_("or do not fetch any tag at all (--no-tags)"), TAGS_UNSET),
159 OPT_STRING_LIST('t', "track", &track, N_("branch"),
160 N_("branch(es) to track")),
161 OPT_STRING('m', "master", &master, N_("branch"), N_("master branch")),
162 { OPTION_CALLBACK, 0, "mirror", &mirror, N_("push|fetch"),
163 N_("set up remote as a mirror to push to or fetch from"),
164 PARSE_OPT_OPTARG, parse_mirror_opt },
168 argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
172 usage_with_options(builtin_remote_add_usage, options);
174 if (mirror && master)
175 die(_("specifying a master branch makes no sense with --mirror"));
176 if (mirror && !(mirror & MIRROR_FETCH) && track.nr)
177 die(_("specifying branches to track makes sense only with fetch mirrors"));
182 remote = remote_get(name);
183 if (remote && (remote->url_nr > 1 ||
184 (strcmp(name, remote->url[0]) &&
185 strcmp(url, remote->url[0])) ||
186 remote->fetch_refspec_nr))
187 die(_("remote %s already exists."), name);
189 strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
190 if (!valid_fetch_refspec(buf2.buf))
191 die(_("'%s' is not a valid remote name"), name);
193 strbuf_addf(&buf, "remote.%s.url", name);
194 if (git_config_set(buf.buf, url))
197 if (!mirror || mirror & MIRROR_FETCH) {
199 strbuf_addf(&buf, "remote.%s.fetch", name);
201 string_list_append(&track, "*");
202 for (i = 0; i < track.nr; i++) {
203 if (add_branch(buf.buf, track.items[i].string,
204 name, mirror, &buf2))
209 if (mirror & MIRROR_PUSH) {
211 strbuf_addf(&buf, "remote.%s.mirror", name);
212 if (git_config_set(buf.buf, "true"))
216 if (fetch_tags != TAGS_DEFAULT) {
218 strbuf_addf(&buf, "remote.%s.tagopt", name);
219 if (git_config_set(buf.buf,
220 fetch_tags == TAGS_SET ? "--tags" : "--no-tags"))
224 if (fetch && fetch_remote(name))
229 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
232 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
234 if (create_symref(buf.buf, buf2.buf, "remote add"))
235 return error(_("Could not setup master '%s'"), master);
238 strbuf_release(&buf);
239 strbuf_release(&buf2);
240 string_list_clear(&track, 0);
247 struct string_list merge;
251 static struct string_list branch_list;
253 static const char *abbrev_ref(const char *name, const char *prefix)
255 skip_prefix(name, prefix, &name);
258 #define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
260 static int config_read_branches(const char *key, const char *value, void *cb)
262 if (starts_with(key, "branch.")) {
263 const char *orig_key = key;
265 struct string_list_item *item;
266 struct branch_info *info;
267 enum { REMOTE, MERGE, REBASE } type;
271 if (strip_suffix(key, ".remote", &key_len)) {
272 name = xmemdupz(key, key_len);
274 } else if (strip_suffix(key, ".merge", &key_len)) {
275 name = xmemdupz(key, key_len);
277 } else if (strip_suffix(key, ".rebase", &key_len)) {
278 name = xmemdupz(key, key_len);
283 item = string_list_insert(&branch_list, name);
286 item->util = xcalloc(1, sizeof(struct branch_info));
288 if (type == REMOTE) {
289 if (info->remote_name)
290 warning(_("more than one %s"), orig_key);
291 info->remote_name = xstrdup(value);
292 } else if (type == MERGE) {
293 char *space = strchr(value, ' ');
294 value = abbrev_branch(value);
297 merge = xstrndup(value, space - value);
298 string_list_append(&info->merge, merge);
299 value = abbrev_branch(space + 1);
300 space = strchr(value, ' ');
302 string_list_append(&info->merge, xstrdup(value));
304 int v = git_config_maybe_bool(orig_key, value);
307 else if (!strcmp(value, "preserve"))
314 static void read_branches(void)
318 git_config(config_read_branches, NULL);
322 struct remote *remote;
323 struct string_list new, stale, tracked, heads, push;
327 static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
329 struct ref *fetch_map = NULL, **tail = &fetch_map;
330 struct ref *ref, *stale_refs;
333 for (i = 0; i < states->remote->fetch_refspec_nr; i++)
334 if (get_fetch_map(remote_refs, states->remote->fetch + i, &tail, 1))
335 die(_("Could not get fetch map for refspec %s"),
336 states->remote->fetch_refspec[i]);
338 states->new.strdup_strings = 1;
339 states->tracked.strdup_strings = 1;
340 states->stale.strdup_strings = 1;
341 for (ref = fetch_map; ref; ref = ref->next) {
342 if (!ref->peer_ref || !ref_exists(ref->peer_ref->name))
343 string_list_append(&states->new, abbrev_branch(ref->name));
345 string_list_append(&states->tracked, abbrev_branch(ref->name));
347 stale_refs = get_stale_heads(states->remote->fetch,
348 states->remote->fetch_refspec_nr, fetch_map);
349 for (ref = stale_refs; ref; ref = ref->next) {
350 struct string_list_item *item =
351 string_list_append(&states->stale, abbrev_branch(ref->name));
352 item->util = xstrdup(ref->name);
354 free_refs(stale_refs);
355 free_refs(fetch_map);
357 string_list_sort(&states->new);
358 string_list_sort(&states->tracked);
359 string_list_sort(&states->stale);
368 PUSH_STATUS_CREATE = 0,
370 PUSH_STATUS_UPTODATE,
371 PUSH_STATUS_FASTFORWARD,
372 PUSH_STATUS_OUTOFDATE,
373 PUSH_STATUS_NOTQUERIED
377 static int get_push_ref_states(const struct ref *remote_refs,
378 struct ref_states *states)
380 struct remote *remote = states->remote;
381 struct ref *ref, *local_refs, *push_map;
385 local_refs = get_local_heads();
386 push_map = copy_ref_list(remote_refs);
388 match_push_refs(local_refs, &push_map, remote->push_refspec_nr,
389 remote->push_refspec, MATCH_REFS_NONE);
391 states->push.strdup_strings = 1;
392 for (ref = push_map; ref; ref = ref->next) {
393 struct string_list_item *item;
394 struct push_info *info;
398 hashcpy(ref->new_sha1, ref->peer_ref->new_sha1);
400 item = string_list_append(&states->push,
401 abbrev_branch(ref->peer_ref->name));
402 item->util = xcalloc(1, sizeof(struct push_info));
404 info->forced = ref->force;
405 info->dest = xstrdup(abbrev_branch(ref->name));
407 if (is_null_sha1(ref->new_sha1)) {
408 info->status = PUSH_STATUS_DELETE;
409 } else if (!hashcmp(ref->old_sha1, ref->new_sha1))
410 info->status = PUSH_STATUS_UPTODATE;
411 else if (is_null_sha1(ref->old_sha1))
412 info->status = PUSH_STATUS_CREATE;
413 else if (has_sha1_file(ref->old_sha1) &&
414 ref_newer(ref->new_sha1, ref->old_sha1))
415 info->status = PUSH_STATUS_FASTFORWARD;
417 info->status = PUSH_STATUS_OUTOFDATE;
419 free_refs(local_refs);
424 static int get_push_ref_states_noquery(struct ref_states *states)
427 struct remote *remote = states->remote;
428 struct string_list_item *item;
429 struct push_info *info;
434 states->push.strdup_strings = 1;
435 if (!remote->push_refspec_nr) {
436 item = string_list_append(&states->push, _("(matching)"));
437 info = item->util = xcalloc(1, sizeof(struct push_info));
438 info->status = PUSH_STATUS_NOTQUERIED;
439 info->dest = xstrdup(item->string);
441 for (i = 0; i < remote->push_refspec_nr; i++) {
442 struct refspec *spec = remote->push + i;
444 item = string_list_append(&states->push, _("(matching)"));
445 else if (strlen(spec->src))
446 item = string_list_append(&states->push, spec->src);
448 item = string_list_append(&states->push, _("(delete)"));
450 info = item->util = xcalloc(1, sizeof(struct push_info));
451 info->forced = spec->force;
452 info->status = PUSH_STATUS_NOTQUERIED;
453 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
458 static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
460 struct ref *ref, *matches;
461 struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
462 struct refspec refspec;
466 refspec.src = refspec.dst = "refs/heads/*";
467 states->heads.strdup_strings = 1;
468 get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
469 matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
471 for (ref = matches; ref; ref = ref->next)
472 string_list_append(&states->heads, abbrev_branch(ref->name));
474 free_refs(fetch_map);
480 struct known_remote {
481 struct known_remote *next;
482 struct remote *remote;
485 struct known_remotes {
486 struct remote *to_delete;
487 struct known_remote *list;
490 static int add_known_remote(struct remote *remote, void *cb_data)
492 struct known_remotes *all = cb_data;
493 struct known_remote *r;
495 if (!strcmp(all->to_delete->name, remote->name))
498 r = xmalloc(sizeof(*r));
505 struct branches_for_remote {
506 struct remote *remote;
507 struct string_list *branches, *skipped;
508 struct known_remotes *keep;
511 static int add_branch_for_removal(const char *refname,
512 const unsigned char *sha1, int flags, void *cb_data)
514 struct branches_for_remote *branches = cb_data;
515 struct refspec refspec;
516 struct string_list_item *item;
517 struct known_remote *kr;
519 memset(&refspec, 0, sizeof(refspec));
520 refspec.dst = (char *)refname;
521 if (remote_find_tracking(branches->remote, &refspec))
524 /* don't delete a branch if another remote also uses it */
525 for (kr = branches->keep->list; kr; kr = kr->next) {
526 memset(&refspec, 0, sizeof(refspec));
527 refspec.dst = (char *)refname;
528 if (!remote_find_tracking(kr->remote, &refspec))
532 /* don't delete non-remote-tracking refs */
533 if (!starts_with(refname, "refs/remotes/")) {
534 /* advise user how to delete local branches */
535 if (starts_with(refname, "refs/heads/"))
536 string_list_append(branches->skipped,
537 abbrev_branch(refname));
538 /* silently skip over other non-remote refs */
542 /* make sure that symrefs are deleted */
543 if (flags & REF_ISSYMREF)
544 return unlink(git_path("%s", refname));
546 item = string_list_append(branches->branches, refname);
547 item->util = xmalloc(20);
548 hashcpy(item->util, sha1);
556 struct string_list *remote_branches;
559 static int read_remote_branches(const char *refname,
560 const unsigned char *sha1, int flags, void *cb_data)
562 struct rename_info *rename = cb_data;
563 struct strbuf buf = STRBUF_INIT;
564 struct string_list_item *item;
566 unsigned char orig_sha1[20];
569 strbuf_addf(&buf, "refs/remotes/%s/", rename->old);
570 if (starts_with(refname, buf.buf)) {
571 item = string_list_append(rename->remote_branches, xstrdup(refname));
572 symref = resolve_ref_unsafe(refname, RESOLVE_REF_READING,
574 if (flag & REF_ISSYMREF)
575 item->util = xstrdup(symref);
583 static int migrate_file(struct remote *remote)
585 struct strbuf buf = STRBUF_INIT;
587 const char *path = NULL;
589 strbuf_addf(&buf, "remote.%s.url", remote->name);
590 for (i = 0; i < remote->url_nr; i++)
591 if (git_config_set_multivar(buf.buf, remote->url[i], "^$", 0))
592 return error(_("Could not append '%s' to '%s'"),
593 remote->url[i], buf.buf);
595 strbuf_addf(&buf, "remote.%s.push", remote->name);
596 for (i = 0; i < remote->push_refspec_nr; i++)
597 if (git_config_set_multivar(buf.buf, remote->push_refspec[i], "^$", 0))
598 return error(_("Could not append '%s' to '%s'"),
599 remote->push_refspec[i], buf.buf);
601 strbuf_addf(&buf, "remote.%s.fetch", remote->name);
602 for (i = 0; i < remote->fetch_refspec_nr; i++)
603 if (git_config_set_multivar(buf.buf, remote->fetch_refspec[i], "^$", 0))
604 return error(_("Could not append '%s' to '%s'"),
605 remote->fetch_refspec[i], buf.buf);
606 if (remote->origin == REMOTE_REMOTES)
607 path = git_path("remotes/%s", remote->name);
608 else if (remote->origin == REMOTE_BRANCHES)
609 path = git_path("branches/%s", remote->name);
611 unlink_or_warn(path);
615 static int mv(int argc, const char **argv)
617 struct option options[] = {
620 struct remote *oldremote, *newremote;
621 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT,
622 old_remote_context = STRBUF_INIT;
623 struct string_list remote_branches = STRING_LIST_INIT_NODUP;
624 struct rename_info rename;
625 int i, refspec_updated = 0;
626 struct each_ref_fn_sha1_adapter wrapped_read_remote_branches =
627 {read_remote_branches, &rename};
630 usage_with_options(builtin_remote_rename_usage, options);
632 rename.old = argv[1];
633 rename.new = argv[2];
634 rename.remote_branches = &remote_branches;
636 oldremote = remote_get(rename.old);
638 die(_("No such remote: %s"), rename.old);
640 if (!strcmp(rename.old, rename.new) && oldremote->origin != REMOTE_CONFIG)
641 return migrate_file(oldremote);
643 newremote = remote_get(rename.new);
644 if (newremote && (newremote->url_nr > 1 || newremote->fetch_refspec_nr))
645 die(_("remote %s already exists."), rename.new);
647 strbuf_addf(&buf, "refs/heads/test:refs/remotes/%s/test", rename.new);
648 if (!valid_fetch_refspec(buf.buf))
649 die(_("'%s' is not a valid remote name"), rename.new);
652 strbuf_addf(&buf, "remote.%s", rename.old);
653 strbuf_addf(&buf2, "remote.%s", rename.new);
654 if (git_config_rename_section(buf.buf, buf2.buf) < 1)
655 return error(_("Could not rename config section '%s' to '%s'"),
659 strbuf_addf(&buf, "remote.%s.fetch", rename.new);
660 if (git_config_set_multivar(buf.buf, NULL, NULL, 1))
661 return error(_("Could not remove config section '%s'"), buf.buf);
662 strbuf_addf(&old_remote_context, ":refs/remotes/%s/", rename.old);
663 for (i = 0; i < oldremote->fetch_refspec_nr; i++) {
667 strbuf_addstr(&buf2, oldremote->fetch_refspec[i]);
668 ptr = strstr(buf2.buf, old_remote_context.buf);
672 ptr-buf2.buf + strlen(":refs/remotes/"),
673 strlen(rename.old), rename.new,
676 warning(_("Not updating non-default fetch refspec\n"
678 "\tPlease update the configuration manually if necessary."),
681 if (git_config_set_multivar(buf.buf, buf2.buf, "^$", 0))
682 return error(_("Could not append '%s'"), buf.buf);
686 for (i = 0; i < branch_list.nr; i++) {
687 struct string_list_item *item = branch_list.items + i;
688 struct branch_info *info = item->util;
689 if (info->remote_name && !strcmp(info->remote_name, rename.old)) {
691 strbuf_addf(&buf, "branch.%s.remote", item->string);
692 if (git_config_set(buf.buf, rename.new)) {
693 return error(_("Could not set '%s'"), buf.buf);
698 if (!refspec_updated)
702 * First remove symrefs, then rename the rest, finally create
705 for_each_ref(each_ref_fn_adapter, &wrapped_read_remote_branches);
706 for (i = 0; i < remote_branches.nr; i++) {
707 struct string_list_item *item = remote_branches.items + i;
709 unsigned char sha1[20];
711 read_ref_full(item->string, RESOLVE_REF_READING, sha1, &flag);
712 if (!(flag & REF_ISSYMREF))
714 if (delete_ref(item->string, NULL, REF_NODEREF))
715 die(_("deleting '%s' failed"), item->string);
717 for (i = 0; i < remote_branches.nr; i++) {
718 struct string_list_item *item = remote_branches.items + i;
723 strbuf_addstr(&buf, item->string);
724 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
725 rename.new, strlen(rename.new));
727 strbuf_addf(&buf2, "remote: renamed %s to %s",
728 item->string, buf.buf);
729 if (rename_ref(item->string, buf.buf, buf2.buf))
730 die(_("renaming '%s' failed"), item->string);
732 for (i = 0; i < remote_branches.nr; i++) {
733 struct string_list_item *item = remote_branches.items + i;
738 strbuf_addstr(&buf, item->string);
739 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
740 rename.new, strlen(rename.new));
742 strbuf_addstr(&buf2, item->util);
743 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old),
744 rename.new, strlen(rename.new));
746 strbuf_addf(&buf3, "remote: renamed %s to %s",
747 item->string, buf.buf);
748 if (create_symref(buf.buf, buf2.buf, buf3.buf))
749 die(_("creating '%s' failed"), buf.buf);
754 static int remove_branches(struct string_list *branches)
756 struct strbuf err = STRBUF_INIT;
759 if (repack_without_refs(branches, &err))
760 result |= error("%s", err.buf);
761 strbuf_release(&err);
763 for (i = 0; i < branches->nr; i++) {
764 struct string_list_item *item = branches->items + i;
765 const char *refname = item->string;
767 if (delete_ref(refname, NULL, 0))
768 result |= error(_("Could not remove branch %s"), refname);
774 static int rm(int argc, const char **argv)
776 struct option options[] = {
779 struct remote *remote;
780 struct strbuf buf = STRBUF_INIT;
781 struct known_remotes known_remotes = { NULL, NULL };
782 struct string_list branches = STRING_LIST_INIT_DUP;
783 struct string_list skipped = STRING_LIST_INIT_DUP;
784 struct branches_for_remote cb_data;
786 struct each_ref_fn_sha1_adapter wrapped_add_branch_for_removal =
787 {add_branch_for_removal, &cb_data};
789 memset(&cb_data, 0, sizeof(cb_data));
790 cb_data.branches = &branches;
791 cb_data.skipped = &skipped;
792 cb_data.keep = &known_remotes;
795 usage_with_options(builtin_remote_rm_usage, options);
797 remote = remote_get(argv[1]);
799 die(_("No such remote: %s"), argv[1]);
801 known_remotes.to_delete = remote;
802 for_each_remote(add_known_remote, &known_remotes);
805 for (i = 0; i < branch_list.nr; i++) {
806 struct string_list_item *item = branch_list.items + i;
807 struct branch_info *info = item->util;
808 if (info->remote_name && !strcmp(info->remote_name, remote->name)) {
809 const char *keys[] = { "remote", "merge", NULL }, **k;
810 for (k = keys; *k; k++) {
812 strbuf_addf(&buf, "branch.%s.%s",
814 if (git_config_set(buf.buf, NULL)) {
815 strbuf_release(&buf);
823 * We cannot just pass a function to for_each_ref() which deletes
824 * the branches one by one, since for_each_ref() relies on cached
825 * refs, which are invalidated when deleting a branch.
827 cb_data.remote = remote;
828 result = for_each_ref(each_ref_fn_adapter, &wrapped_add_branch_for_removal);
829 strbuf_release(&buf);
832 result = remove_branches(&branches);
833 string_list_clear(&branches, 1);
837 Q_("Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"
838 "to delete it, use:",
839 "Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"
840 "to delete them, use:",
842 for (i = 0; i < skipped.nr; i++)
843 fprintf(stderr, " git branch -d %s\n",
844 skipped.items[i].string);
846 string_list_clear(&skipped, 0);
849 strbuf_addf(&buf, "remote.%s", remote->name);
850 if (git_config_rename_section(buf.buf, NULL) < 1)
851 return error(_("Could not remove config section '%s'"), buf.buf);
857 static void clear_push_info(void *util, const char *string)
859 struct push_info *info = util;
864 static void free_remote_ref_states(struct ref_states *states)
866 string_list_clear(&states->new, 0);
867 string_list_clear(&states->stale, 1);
868 string_list_clear(&states->tracked, 0);
869 string_list_clear(&states->heads, 0);
870 string_list_clear_func(&states->push, clear_push_info);
873 static int append_ref_to_tracked_list(const char *refname,
874 const unsigned char *sha1, int flags, void *cb_data)
876 struct ref_states *states = cb_data;
877 struct refspec refspec;
879 if (flags & REF_ISSYMREF)
882 memset(&refspec, 0, sizeof(refspec));
883 refspec.dst = (char *)refname;
884 if (!remote_find_tracking(states->remote, &refspec))
885 string_list_append(&states->tracked, abbrev_branch(refspec.src));
890 static int get_remote_ref_states(const char *name,
891 struct ref_states *states,
894 struct transport *transport;
895 const struct ref *remote_refs;
897 states->remote = remote_get(name);
899 return error(_("No such remote: %s"), name);
904 transport = transport_get(states->remote, states->remote->url_nr > 0 ?
905 states->remote->url[0] : NULL);
906 remote_refs = transport_get_remote_refs(transport);
907 transport_disconnect(transport);
910 if (query & GET_REF_STATES)
911 get_ref_states(remote_refs, states);
912 if (query & GET_HEAD_NAMES)
913 get_head_names(remote_refs, states);
914 if (query & GET_PUSH_REF_STATES)
915 get_push_ref_states(remote_refs, states);
917 struct each_ref_fn_sha1_adapter wrapped_append_ref_to_tracked_list =
918 {append_ref_to_tracked_list, states};
920 for_each_ref(each_ref_fn_adapter, &wrapped_append_ref_to_tracked_list);
921 string_list_sort(&states->tracked);
922 get_push_ref_states_noquery(states);
929 struct string_list *list;
930 struct ref_states *states;
935 static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
937 struct show_info *info = cb_data;
938 int n = strlen(item->string);
941 string_list_insert(info->list, item->string);
945 static int show_remote_info_item(struct string_list_item *item, void *cb_data)
947 struct show_info *info = cb_data;
948 struct ref_states *states = info->states;
949 const char *name = item->string;
951 if (states->queried) {
952 const char *fmt = "%s";
953 const char *arg = "";
954 if (string_list_has_string(&states->new, name)) {
955 fmt = _(" new (next fetch will store in remotes/%s)");
956 arg = states->remote->name;
957 } else if (string_list_has_string(&states->tracked, name))
959 else if (string_list_has_string(&states->stale, name))
960 arg = _(" stale (use 'git remote prune' to remove)");
963 printf(" %-*s", info->width, name);
967 printf(" %s\n", name);
972 static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
974 struct show_info *show_info = cb_data;
975 struct ref_states *states = show_info->states;
976 struct branch_info *branch_info = branch_item->util;
977 struct string_list_item *item;
980 if (!branch_info->merge.nr || !branch_info->remote_name ||
981 strcmp(states->remote->name, branch_info->remote_name))
983 if ((n = strlen(branch_item->string)) > show_info->width)
984 show_info->width = n;
985 if (branch_info->rebase)
986 show_info->any_rebase = 1;
988 item = string_list_insert(show_info->list, branch_item->string);
989 item->util = branch_info;
994 static int show_local_info_item(struct string_list_item *item, void *cb_data)
996 struct show_info *show_info = cb_data;
997 struct branch_info *branch_info = item->util;
998 struct string_list *merge = &branch_info->merge;
1002 if (branch_info->rebase && branch_info->merge.nr > 1) {
1003 error(_("invalid branch.%s.merge; cannot rebase onto > 1 branch"),
1008 printf(" %-*s ", show_info->width, item->string);
1009 if (branch_info->rebase) {
1010 printf_ln(_("rebases onto remote %s"), merge->items[0].string);
1012 } else if (show_info->any_rebase) {
1013 printf_ln(_(" merges with remote %s"), merge->items[0].string);
1014 also = _(" and with remote");
1016 printf_ln(_("merges with remote %s"), merge->items[0].string);
1017 also = _(" and with remote");
1019 for (i = 1; i < merge->nr; i++)
1020 printf(" %-*s %s %s\n", show_info->width, "", also,
1021 merge->items[i].string);
1026 static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
1028 struct show_info *show_info = cb_data;
1029 struct push_info *push_info = push_item->util;
1030 struct string_list_item *item;
1032 if ((n = strlen(push_item->string)) > show_info->width)
1033 show_info->width = n;
1034 if ((n = strlen(push_info->dest)) > show_info->width2)
1035 show_info->width2 = n;
1036 item = string_list_append(show_info->list, push_item->string);
1037 item->util = push_item->util;
1042 * Sorting comparison for a string list that has push_info
1043 * structs in its util field
1045 static int cmp_string_with_push(const void *va, const void *vb)
1047 const struct string_list_item *a = va;
1048 const struct string_list_item *b = vb;
1049 const struct push_info *a_push = a->util;
1050 const struct push_info *b_push = b->util;
1051 int cmp = strcmp(a->string, b->string);
1052 return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
1055 static int show_push_info_item(struct string_list_item *item, void *cb_data)
1057 struct show_info *show_info = cb_data;
1058 struct push_info *push_info = item->util;
1059 const char *src = item->string, *status = NULL;
1061 switch (push_info->status) {
1062 case PUSH_STATUS_CREATE:
1063 status = _("create");
1065 case PUSH_STATUS_DELETE:
1066 status = _("delete");
1069 case PUSH_STATUS_UPTODATE:
1070 status = _("up to date");
1072 case PUSH_STATUS_FASTFORWARD:
1073 status = _("fast-forwardable");
1075 case PUSH_STATUS_OUTOFDATE:
1076 status = _("local out of date");
1078 case PUSH_STATUS_NOTQUERIED:
1082 if (push_info->forced)
1083 printf_ln(_(" %-*s forces to %-*s (%s)"), show_info->width, src,
1084 show_info->width2, push_info->dest, status);
1086 printf_ln(_(" %-*s pushes to %-*s (%s)"), show_info->width, src,
1087 show_info->width2, push_info->dest, status);
1089 if (push_info->forced)
1090 printf_ln(_(" %-*s forces to %s"), show_info->width, src,
1093 printf_ln(_(" %-*s pushes to %s"), show_info->width, src,
1099 static int get_one_entry(struct remote *remote, void *priv)
1101 struct string_list *list = priv;
1102 struct strbuf url_buf = STRBUF_INIT;
1106 if (remote->url_nr > 0) {
1107 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1108 string_list_append(list, remote->name)->util =
1109 strbuf_detach(&url_buf, NULL);
1111 string_list_append(list, remote->name)->util = NULL;
1112 if (remote->pushurl_nr) {
1113 url = remote->pushurl;
1114 url_nr = remote->pushurl_nr;
1117 url_nr = remote->url_nr;
1119 for (i = 0; i < url_nr; i++)
1121 strbuf_addf(&url_buf, "%s (push)", url[i]);
1122 string_list_append(list, remote->name)->util =
1123 strbuf_detach(&url_buf, NULL);
1129 static int show_all(void)
1131 struct string_list list = STRING_LIST_INIT_NODUP;
1134 list.strdup_strings = 1;
1135 result = for_each_remote(get_one_entry, &list);
1140 string_list_sort(&list);
1141 for (i = 0; i < list.nr; i++) {
1142 struct string_list_item *item = list.items + i;
1144 printf("%s\t%s\n", item->string,
1145 item->util ? (const char *)item->util : "");
1147 if (i && !strcmp((item - 1)->string, item->string))
1149 printf("%s\n", item->string);
1153 string_list_clear(&list, 1);
1157 static int show(int argc, const char **argv)
1159 int no_query = 0, result = 0, query_flag = 0;
1160 struct option options[] = {
1161 OPT_BOOL('n', NULL, &no_query, N_("do not query remotes")),
1164 struct ref_states states;
1165 struct string_list info_list = STRING_LIST_INIT_NODUP;
1166 struct show_info info;
1168 argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
1175 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
1177 memset(&states, 0, sizeof(states));
1178 memset(&info, 0, sizeof(info));
1179 info.states = &states;
1180 info.list = &info_list;
1181 for (; argc; argc--, argv++) {
1186 get_remote_ref_states(*argv, &states, query_flag);
1188 printf_ln(_("* remote %s"), *argv);
1189 printf_ln(_(" Fetch URL: %s"), states.remote->url_nr > 0 ?
1190 states.remote->url[0] : _("(no URL)"));
1191 if (states.remote->pushurl_nr) {
1192 url = states.remote->pushurl;
1193 url_nr = states.remote->pushurl_nr;
1195 url = states.remote->url;
1196 url_nr = states.remote->url_nr;
1198 for (i = 0; i < url_nr; i++)
1199 printf_ln(_(" Push URL: %s"), url[i]);
1201 printf_ln(_(" Push URL: %s"), "(no URL)");
1203 printf_ln(_(" HEAD branch: %s"), "(not queried)");
1204 else if (!states.heads.nr)
1205 printf_ln(_(" HEAD branch: %s"), "(unknown)");
1206 else if (states.heads.nr == 1)
1207 printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
1209 printf(_(" HEAD branch (remote HEAD is ambiguous,"
1210 " may be one of the following):\n"));
1211 for (i = 0; i < states.heads.nr; i++)
1212 printf(" %s\n", states.heads.items[i].string);
1215 /* remote branch info */
1217 for_each_string_list(&states.new, add_remote_to_show_info, &info);
1218 for_each_string_list(&states.tracked, add_remote_to_show_info, &info);
1219 for_each_string_list(&states.stale, add_remote_to_show_info, &info);
1221 printf_ln(Q_(" Remote branch:%s",
1222 " Remote branches:%s",
1224 no_query ? _(" (status not queried)") : "");
1225 for_each_string_list(info.list, show_remote_info_item, &info);
1226 string_list_clear(info.list, 0);
1230 info.any_rebase = 0;
1231 for_each_string_list(&branch_list, add_local_to_show_info, &info);
1233 printf_ln(Q_(" Local branch configured for 'git pull':",
1234 " Local branches configured for 'git pull':",
1236 for_each_string_list(info.list, show_local_info_item, &info);
1237 string_list_clear(info.list, 0);
1240 if (states.remote->mirror)
1241 printf_ln(_(" Local refs will be mirrored by 'git push'"));
1243 info.width = info.width2 = 0;
1244 for_each_string_list(&states.push, add_push_to_show_info, &info);
1245 qsort(info.list->items, info.list->nr,
1246 sizeof(*info.list->items), cmp_string_with_push);
1248 printf_ln(Q_(" Local ref configured for 'git push'%s:",
1249 " Local refs configured for 'git push'%s:",
1251 no_query ? _(" (status not queried)") : "");
1252 for_each_string_list(info.list, show_push_info_item, &info);
1253 string_list_clear(info.list, 0);
1255 free_remote_ref_states(&states);
1261 static int set_head(int argc, const char **argv)
1263 int i, opt_a = 0, opt_d = 0, result = 0;
1264 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1265 char *head_name = NULL;
1267 struct option options[] = {
1268 OPT_BOOL('a', "auto", &opt_a,
1269 N_("set refs/remotes/<name>/HEAD according to remote")),
1270 OPT_BOOL('d', "delete", &opt_d,
1271 N_("delete refs/remotes/<name>/HEAD")),
1274 argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
1277 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1279 if (!opt_a && !opt_d && argc == 2) {
1280 head_name = xstrdup(argv[1]);
1281 } else if (opt_a && !opt_d && argc == 1) {
1282 struct ref_states states;
1283 memset(&states, 0, sizeof(states));
1284 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1285 if (!states.heads.nr)
1286 result |= error(_("Cannot determine remote HEAD"));
1287 else if (states.heads.nr > 1) {
1288 result |= error(_("Multiple remote HEAD branches. "
1289 "Please choose one explicitly with:"));
1290 for (i = 0; i < states.heads.nr; i++)
1291 fprintf(stderr, " git remote set-head %s %s\n",
1292 argv[0], states.heads.items[i].string);
1294 head_name = xstrdup(states.heads.items[0].string);
1295 free_remote_ref_states(&states);
1296 } else if (opt_d && !opt_a && argc == 1) {
1297 if (delete_ref(buf.buf, NULL, REF_NODEREF))
1298 result |= error(_("Could not delete %s"), buf.buf);
1300 usage_with_options(builtin_remote_sethead_usage, options);
1303 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1304 /* make sure it's valid */
1305 if (!ref_exists(buf2.buf))
1306 result |= error(_("Not a valid ref: %s"), buf2.buf);
1307 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
1308 result |= error(_("Could not setup %s"), buf.buf);
1310 printf("%s/HEAD set to %s\n", argv[0], head_name);
1314 strbuf_release(&buf);
1315 strbuf_release(&buf2);
1319 static int prune_remote(const char *remote, int dry_run)
1322 struct ref_states states;
1323 struct string_list refs_to_prune = STRING_LIST_INIT_NODUP;
1324 struct string_list_item *item;
1325 const char *dangling_msg = dry_run
1326 ? _(" %s will become dangling!")
1327 : _(" %s has become dangling!");
1329 memset(&states, 0, sizeof(states));
1330 get_remote_ref_states(remote, &states, GET_REF_STATES);
1332 if (!states.stale.nr) {
1333 free_remote_ref_states(&states);
1337 printf_ln(_("Pruning %s"), remote);
1338 printf_ln(_("URL: %s"),
1339 states.remote->url_nr
1340 ? states.remote->url[0]
1343 for_each_string_list_item(item, &states.stale)
1344 string_list_append(&refs_to_prune, item->util);
1345 string_list_sort(&refs_to_prune);
1348 struct strbuf err = STRBUF_INIT;
1349 if (repack_without_refs(&refs_to_prune, &err))
1350 result |= error("%s", err.buf);
1351 strbuf_release(&err);
1354 for_each_string_list_item(item, &states.stale) {
1355 const char *refname = item->util;
1358 result |= delete_ref(refname, NULL, 0);
1361 printf_ln(_(" * [would prune] %s"),
1362 abbrev_ref(refname, "refs/remotes/"));
1364 printf_ln(_(" * [pruned] %s"),
1365 abbrev_ref(refname, "refs/remotes/"));
1368 warn_dangling_symrefs(stdout, dangling_msg, &refs_to_prune);
1370 string_list_clear(&refs_to_prune, 0);
1371 free_remote_ref_states(&states);
1375 static int prune(int argc, const char **argv)
1377 int dry_run = 0, result = 0;
1378 struct option options[] = {
1379 OPT__DRY_RUN(&dry_run, N_("dry run")),
1383 argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
1387 usage_with_options(builtin_remote_prune_usage, options);
1389 for (; argc; argc--, argv++)
1390 result |= prune_remote(*argv, dry_run);
1395 static int get_remote_default(const char *key, const char *value, void *priv)
1397 if (strcmp(key, "remotes.default") == 0) {
1404 static int update(int argc, const char **argv)
1407 struct option options[] = {
1408 OPT_BOOL('p', "prune", &prune,
1409 N_("prune remotes after fetching")),
1412 struct argv_array fetch_argv = ARGV_ARRAY_INIT;
1413 int default_defined = 0;
1416 argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
1417 PARSE_OPT_KEEP_ARGV0);
1419 argv_array_push(&fetch_argv, "fetch");
1422 argv_array_push(&fetch_argv, prune ? "--prune" : "--no-prune");
1424 argv_array_push(&fetch_argv, "-v");
1425 argv_array_push(&fetch_argv, "--multiple");
1427 argv_array_push(&fetch_argv, "default");
1428 for (i = 1; i < argc; i++)
1429 argv_array_push(&fetch_argv, argv[i]);
1431 if (strcmp(fetch_argv.argv[fetch_argv.argc-1], "default") == 0) {
1432 git_config(get_remote_default, &default_defined);
1433 if (!default_defined) {
1434 argv_array_pop(&fetch_argv);
1435 argv_array_push(&fetch_argv, "--all");
1439 retval = run_command_v_opt(fetch_argv.argv, RUN_GIT_CMD);
1440 argv_array_clear(&fetch_argv);
1444 static int remove_all_fetch_refspecs(const char *remote, const char *key)
1446 return git_config_set_multivar(key, NULL, NULL, 1);
1449 static int add_branches(struct remote *remote, const char **branches,
1452 const char *remotename = remote->name;
1453 int mirror = remote->mirror;
1454 struct strbuf refspec = STRBUF_INIT;
1456 for (; *branches; branches++)
1457 if (add_branch(key, *branches, remotename, mirror, &refspec)) {
1458 strbuf_release(&refspec);
1462 strbuf_release(&refspec);
1466 static int set_remote_branches(const char *remotename, const char **branches,
1469 struct strbuf key = STRBUF_INIT;
1470 struct remote *remote;
1472 strbuf_addf(&key, "remote.%s.fetch", remotename);
1474 if (!remote_is_configured(remotename))
1475 die(_("No such remote '%s'"), remotename);
1476 remote = remote_get(remotename);
1478 if (!add_mode && remove_all_fetch_refspecs(remotename, key.buf)) {
1479 strbuf_release(&key);
1482 if (add_branches(remote, branches, key.buf)) {
1483 strbuf_release(&key);
1487 strbuf_release(&key);
1491 static int set_branches(int argc, const char **argv)
1494 struct option options[] = {
1495 OPT_BOOL('\0', "add", &add_mode, N_("add branch")),
1499 argc = parse_options(argc, argv, NULL, options,
1500 builtin_remote_setbranches_usage, 0);
1502 error(_("no remote specified"));
1503 usage_with_options(builtin_remote_setbranches_usage, options);
1507 return set_remote_branches(argv[0], argv + 1, add_mode);
1510 static int set_url(int argc, const char **argv)
1512 int i, push_mode = 0, add_mode = 0, delete_mode = 0;
1513 int matches = 0, negative_matches = 0;
1514 const char *remotename = NULL;
1515 const char *newurl = NULL;
1516 const char *oldurl = NULL;
1517 struct remote *remote;
1519 const char **urlset;
1521 struct strbuf name_buf = STRBUF_INIT;
1522 struct option options[] = {
1523 OPT_BOOL('\0', "push", &push_mode,
1524 N_("manipulate push URLs")),
1525 OPT_BOOL('\0', "add", &add_mode,
1527 OPT_BOOL('\0', "delete", &delete_mode,
1531 argc = parse_options(argc, argv, NULL, options, builtin_remote_seturl_usage,
1532 PARSE_OPT_KEEP_ARGV0);
1534 if (add_mode && delete_mode)
1535 die(_("--add --delete doesn't make sense"));
1537 if (argc < 3 || argc > 4 || ((add_mode || delete_mode) && argc != 3))
1538 usage_with_options(builtin_remote_seturl_usage, options);
1540 remotename = argv[1];
1548 if (!remote_is_configured(remotename))
1549 die(_("No such remote '%s'"), remotename);
1550 remote = remote_get(remotename);
1553 strbuf_addf(&name_buf, "remote.%s.pushurl", remotename);
1554 urlset = remote->pushurl;
1555 urlset_nr = remote->pushurl_nr;
1557 strbuf_addf(&name_buf, "remote.%s.url", remotename);
1558 urlset = remote->url;
1559 urlset_nr = remote->url_nr;
1562 /* Special cases that add new entry. */
1563 if ((!oldurl && !delete_mode) || add_mode) {
1565 git_config_set_multivar(name_buf.buf, newurl,
1568 git_config_set(name_buf.buf, newurl);
1569 strbuf_release(&name_buf);
1573 /* Old URL specified. Demand that one matches. */
1574 if (regcomp(&old_regex, oldurl, REG_EXTENDED))
1575 die(_("Invalid old URL pattern: %s"), oldurl);
1577 for (i = 0; i < urlset_nr; i++)
1578 if (!regexec(&old_regex, urlset[i], 0, NULL, 0))
1582 if (!delete_mode && !matches)
1583 die(_("No such URL found: %s"), oldurl);
1584 if (delete_mode && !negative_matches && !push_mode)
1585 die(_("Will not delete all non-push URLs"));
1587 regfree(&old_regex);
1590 git_config_set_multivar(name_buf.buf, newurl, oldurl, 0);
1592 git_config_set_multivar(name_buf.buf, NULL, oldurl, 1);
1596 int cmd_remote(int argc, const char **argv, const char *prefix)
1598 struct option options[] = {
1599 OPT__VERBOSE(&verbose, N_("be verbose; must be placed before a subcommand")),
1604 argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
1605 PARSE_OPT_STOP_AT_NON_OPTION);
1608 result = show_all();
1609 else if (!strcmp(argv[0], "add"))
1610 result = add(argc, argv);
1611 else if (!strcmp(argv[0], "rename"))
1612 result = mv(argc, argv);
1613 else if (!strcmp(argv[0], "rm") || !strcmp(argv[0], "remove"))
1614 result = rm(argc, argv);
1615 else if (!strcmp(argv[0], "set-head"))
1616 result = set_head(argc, argv);
1617 else if (!strcmp(argv[0], "set-branches"))
1618 result = set_branches(argc, argv);
1619 else if (!strcmp(argv[0], "set-url"))
1620 result = set_url(argc, argv);
1621 else if (!strcmp(argv[0], "show"))
1622 result = show(argc, argv);
1623 else if (!strcmp(argv[0], "prune"))
1624 result = prune(argc, argv);
1625 else if (!strcmp(argv[0], "update"))
1626 result = update(argc, argv);
1628 error(_("Unknown subcommand: %s"), argv[0]);
1629 usage_with_options(builtin_remote_usage, options);
1632 return result ? 1 : 0;