Merge branch 'rs/ref-transaction-multi' into jch
[git/jrn.git] / builtin / remote.c
blob70bbfb6cc4855d81b128eaddc1cb1c3076cbad1b
1 #include "builtin.h"
2 #include "parse-options.h"
3 #include "transport.h"
4 #include "remote.h"
5 #include "string-list.h"
6 #include "strbuf.h"
7 #include "run-command.h"
8 #include "refs.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>"),
24 NULL
27 static const char * const builtin_remote_add_usage[] = {
28 N_("git remote add [<options>] <name> <url>"),
29 NULL
32 static const char * const builtin_remote_rename_usage[] = {
33 N_("git remote rename <old> <new>"),
34 NULL
37 static const char * const builtin_remote_rm_usage[] = {
38 N_("git remote remove <name>"),
39 NULL
42 static const char * const builtin_remote_sethead_usage[] = {
43 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
44 NULL
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>..."),
50 NULL
53 static const char * const builtin_remote_show_usage[] = {
54 N_("git remote show [<options>] <name>"),
55 NULL
58 static const char * const builtin_remote_prune_usage[] = {
59 N_("git remote prune [<options>] <name>"),
60 NULL
63 static const char * const builtin_remote_update_usage[] = {
64 N_("git remote update [<options>] [<group> | <remote>]..."),
65 NULL
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>"),
72 NULL
75 #define GET_REF_STATES (1<<0)
76 #define GET_HEAD_NAMES (1<<1)
77 #define GET_PUSH_REF_STATES (1<<2)
79 static int verbose;
81 static int fetch_remote(const char *name)
83 const char *argv[] = { "fetch", name, NULL, NULL };
84 if (verbose) {
85 argv[1] = "-v";
86 argv[2] = name;
88 printf_ln(_("Updating %s"), name);
89 if (run_command_v_opt(argv, RUN_GIT_CMD))
90 return error(_("Could not fetch %s"), name);
91 return 0;
94 enum {
95 TAGS_UNSET = 0,
96 TAGS_DEFAULT = 1,
97 TAGS_SET = 2
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)
108 strbuf_reset(tmp);
109 strbuf_addch(tmp, '+');
110 if (mirror)
111 strbuf_addf(tmp, "refs/%s:refs/%s",
112 branchname, branchname);
113 else
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;
126 if (not)
127 *mirror = MIRROR_NONE;
128 else if (!arg) {
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;
136 else
137 return error(_("unknown mirror argument: %s"), arg);
138 return 0;
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;
150 int i;
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"),
156 TAGS_SET),
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 },
165 OPT_END()
168 argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
171 if (argc != 2)
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"));
179 name = argv[0];
180 url = argv[1];
182 remote = remote_get(name);
183 if (remote && (remote->url_nr > 1 || strcmp(name, remote->url[0]) ||
184 remote->fetch_refspec_nr))
185 die(_("remote %s already exists."), name);
187 strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
188 if (!valid_fetch_refspec(buf2.buf))
189 die(_("'%s' is not a valid remote name"), name);
191 strbuf_addf(&buf, "remote.%s.url", name);
192 if (git_config_set(buf.buf, url))
193 return 1;
195 if (!mirror || mirror & MIRROR_FETCH) {
196 strbuf_reset(&buf);
197 strbuf_addf(&buf, "remote.%s.fetch", name);
198 if (track.nr == 0)
199 string_list_append(&track, "*");
200 for (i = 0; i < track.nr; i++) {
201 if (add_branch(buf.buf, track.items[i].string,
202 name, mirror, &buf2))
203 return 1;
207 if (mirror & MIRROR_PUSH) {
208 strbuf_reset(&buf);
209 strbuf_addf(&buf, "remote.%s.mirror", name);
210 if (git_config_set(buf.buf, "true"))
211 return 1;
214 if (fetch_tags != TAGS_DEFAULT) {
215 strbuf_reset(&buf);
216 strbuf_addf(&buf, "remote.%s.tagopt", name);
217 if (git_config_set(buf.buf,
218 fetch_tags == TAGS_SET ? "--tags" : "--no-tags"))
219 return 1;
222 if (fetch && fetch_remote(name))
223 return 1;
225 if (master) {
226 strbuf_reset(&buf);
227 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
229 strbuf_reset(&buf2);
230 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
232 if (create_symref(buf.buf, buf2.buf, "remote add"))
233 return error(_("Could not setup master '%s'"), master);
236 strbuf_release(&buf);
237 strbuf_release(&buf2);
238 string_list_clear(&track, 0);
240 return 0;
243 struct branch_info {
244 char *remote_name;
245 struct string_list merge;
246 int rebase;
249 static struct string_list branch_list;
251 static const char *abbrev_ref(const char *name, const char *prefix)
253 skip_prefix(name, prefix, &name);
254 return name;
256 #define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
258 static int config_read_branches(const char *key, const char *value, void *cb)
260 if (starts_with(key, "branch.")) {
261 const char *orig_key = key;
262 char *name;
263 struct string_list_item *item;
264 struct branch_info *info;
265 enum { REMOTE, MERGE, REBASE } type;
266 size_t key_len;
268 key += 7;
269 if (strip_suffix(key, ".remote", &key_len)) {
270 name = xmemdupz(key, key_len);
271 type = REMOTE;
272 } else if (strip_suffix(key, ".merge", &key_len)) {
273 name = xmemdupz(key, key_len);
274 type = MERGE;
275 } else if (strip_suffix(key, ".rebase", &key_len)) {
276 name = xmemdupz(key, key_len);
277 type = REBASE;
278 } else
279 return 0;
281 item = string_list_insert(&branch_list, name);
283 if (!item->util)
284 item->util = xcalloc(1, sizeof(struct branch_info));
285 info = item->util;
286 if (type == REMOTE) {
287 if (info->remote_name)
288 warning(_("more than one %s"), orig_key);
289 info->remote_name = xstrdup(value);
290 } else if (type == MERGE) {
291 char *space = strchr(value, ' ');
292 value = abbrev_branch(value);
293 while (space) {
294 char *merge;
295 merge = xstrndup(value, space - value);
296 string_list_append(&info->merge, merge);
297 value = abbrev_branch(space + 1);
298 space = strchr(value, ' ');
300 string_list_append(&info->merge, xstrdup(value));
301 } else {
302 int v = git_config_maybe_bool(orig_key, value);
303 if (v >= 0)
304 info->rebase = v;
305 else if (!strcmp(value, "preserve"))
306 info->rebase = 1;
309 return 0;
312 static void read_branches(void)
314 if (branch_list.nr)
315 return;
316 git_config(config_read_branches, NULL);
319 struct ref_states {
320 struct remote *remote;
321 struct string_list new, stale, tracked, heads, push;
322 int queried;
325 static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
327 struct ref *fetch_map = NULL, **tail = &fetch_map;
328 struct ref *ref, *stale_refs;
329 int i;
331 for (i = 0; i < states->remote->fetch_refspec_nr; i++)
332 if (get_fetch_map(remote_refs, states->remote->fetch + i, &tail, 1))
333 die(_("Could not get fetch map for refspec %s"),
334 states->remote->fetch_refspec[i]);
336 states->new.strdup_strings = 1;
337 states->tracked.strdup_strings = 1;
338 states->stale.strdup_strings = 1;
339 for (ref = fetch_map; ref; ref = ref->next) {
340 if (!ref->peer_ref || !ref_exists(ref->peer_ref->name))
341 string_list_append(&states->new, abbrev_branch(ref->name));
342 else
343 string_list_append(&states->tracked, abbrev_branch(ref->name));
345 stale_refs = get_stale_heads(states->remote->fetch,
346 states->remote->fetch_refspec_nr, fetch_map);
347 for (ref = stale_refs; ref; ref = ref->next) {
348 struct string_list_item *item =
349 string_list_append(&states->stale, abbrev_branch(ref->name));
350 item->util = xstrdup(ref->name);
352 free_refs(stale_refs);
353 free_refs(fetch_map);
355 sort_string_list(&states->new);
356 sort_string_list(&states->tracked);
357 sort_string_list(&states->stale);
359 return 0;
362 struct push_info {
363 char *dest;
364 int forced;
365 enum {
366 PUSH_STATUS_CREATE = 0,
367 PUSH_STATUS_DELETE,
368 PUSH_STATUS_UPTODATE,
369 PUSH_STATUS_FASTFORWARD,
370 PUSH_STATUS_OUTOFDATE,
371 PUSH_STATUS_NOTQUERIED
372 } status;
375 static int get_push_ref_states(const struct ref *remote_refs,
376 struct ref_states *states)
378 struct remote *remote = states->remote;
379 struct ref *ref, *local_refs, *push_map;
380 if (remote->mirror)
381 return 0;
383 local_refs = get_local_heads();
384 push_map = copy_ref_list(remote_refs);
386 match_push_refs(local_refs, &push_map, remote->push_refspec_nr,
387 remote->push_refspec, MATCH_REFS_NONE);
389 states->push.strdup_strings = 1;
390 for (ref = push_map; ref; ref = ref->next) {
391 struct string_list_item *item;
392 struct push_info *info;
394 if (!ref->peer_ref)
395 continue;
396 hashcpy(ref->new_sha1, ref->peer_ref->new_sha1);
398 item = string_list_append(&states->push,
399 abbrev_branch(ref->peer_ref->name));
400 item->util = xcalloc(1, sizeof(struct push_info));
401 info = item->util;
402 info->forced = ref->force;
403 info->dest = xstrdup(abbrev_branch(ref->name));
405 if (is_null_sha1(ref->new_sha1)) {
406 info->status = PUSH_STATUS_DELETE;
407 } else if (!hashcmp(ref->old_sha1, ref->new_sha1))
408 info->status = PUSH_STATUS_UPTODATE;
409 else if (is_null_sha1(ref->old_sha1))
410 info->status = PUSH_STATUS_CREATE;
411 else if (has_sha1_file(ref->old_sha1) &&
412 ref_newer(ref->new_sha1, ref->old_sha1))
413 info->status = PUSH_STATUS_FASTFORWARD;
414 else
415 info->status = PUSH_STATUS_OUTOFDATE;
417 free_refs(local_refs);
418 free_refs(push_map);
419 return 0;
422 static int get_push_ref_states_noquery(struct ref_states *states)
424 int i;
425 struct remote *remote = states->remote;
426 struct string_list_item *item;
427 struct push_info *info;
429 if (remote->mirror)
430 return 0;
432 states->push.strdup_strings = 1;
433 if (!remote->push_refspec_nr) {
434 item = string_list_append(&states->push, _("(matching)"));
435 info = item->util = xcalloc(1, sizeof(struct push_info));
436 info->status = PUSH_STATUS_NOTQUERIED;
437 info->dest = xstrdup(item->string);
439 for (i = 0; i < remote->push_refspec_nr; i++) {
440 struct refspec *spec = remote->push + i;
441 if (spec->matching)
442 item = string_list_append(&states->push, _("(matching)"));
443 else if (strlen(spec->src))
444 item = string_list_append(&states->push, spec->src);
445 else
446 item = string_list_append(&states->push, _("(delete)"));
448 info = item->util = xcalloc(1, sizeof(struct push_info));
449 info->forced = spec->force;
450 info->status = PUSH_STATUS_NOTQUERIED;
451 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
453 return 0;
456 static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
458 struct ref *ref, *matches;
459 struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
460 struct refspec refspec;
462 refspec.force = 0;
463 refspec.pattern = 1;
464 refspec.src = refspec.dst = "refs/heads/*";
465 states->heads.strdup_strings = 1;
466 get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
467 matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
468 fetch_map, 1);
469 for (ref = matches; ref; ref = ref->next)
470 string_list_append(&states->heads, abbrev_branch(ref->name));
472 free_refs(fetch_map);
473 free_refs(matches);
475 return 0;
478 struct known_remote {
479 struct known_remote *next;
480 struct remote *remote;
483 struct known_remotes {
484 struct remote *to_delete;
485 struct known_remote *list;
488 static int add_known_remote(struct remote *remote, void *cb_data)
490 struct known_remotes *all = cb_data;
491 struct known_remote *r;
493 if (!strcmp(all->to_delete->name, remote->name))
494 return 0;
496 r = xmalloc(sizeof(*r));
497 r->remote = remote;
498 r->next = all->list;
499 all->list = r;
500 return 0;
503 struct branches_for_remote {
504 struct remote *remote;
505 struct string_list *branches, *skipped;
506 struct known_remotes *keep;
509 static int add_branch_for_removal(const char *refname,
510 const unsigned char *sha1, int flags, void *cb_data)
512 struct branches_for_remote *branches = cb_data;
513 struct refspec refspec;
514 struct string_list_item *item;
515 struct known_remote *kr;
517 memset(&refspec, 0, sizeof(refspec));
518 refspec.dst = (char *)refname;
519 if (remote_find_tracking(branches->remote, &refspec))
520 return 0;
522 /* don't delete a branch if another remote also uses it */
523 for (kr = branches->keep->list; kr; kr = kr->next) {
524 memset(&refspec, 0, sizeof(refspec));
525 refspec.dst = (char *)refname;
526 if (!remote_find_tracking(kr->remote, &refspec))
527 return 0;
530 /* don't delete non-remote-tracking refs */
531 if (!starts_with(refname, "refs/remotes/")) {
532 /* advise user how to delete local branches */
533 if (starts_with(refname, "refs/heads/"))
534 string_list_append(branches->skipped,
535 abbrev_branch(refname));
536 /* silently skip over other non-remote refs */
537 return 0;
540 /* make sure that symrefs are deleted */
541 if (flags & REF_ISSYMREF)
542 return unlink(git_path("%s", refname));
544 item = string_list_append(branches->branches, refname);
545 item->util = xmalloc(20);
546 hashcpy(item->util, sha1);
548 return 0;
551 struct rename_info {
552 const char *old;
553 const char *new;
554 struct string_list *remote_branches;
557 static int read_remote_branches(const char *refname,
558 const unsigned char *sha1, int flags, void *cb_data)
560 struct rename_info *rename = cb_data;
561 struct strbuf buf = STRBUF_INIT;
562 struct string_list_item *item;
563 int flag;
564 unsigned char orig_sha1[20];
565 const char *symref;
567 strbuf_addf(&buf, "refs/remotes/%s/", rename->old);
568 if (starts_with(refname, buf.buf)) {
569 item = string_list_append(rename->remote_branches, xstrdup(refname));
570 symref = resolve_ref_unsafe(refname, orig_sha1,
571 RESOLVE_REF_READING, &flag);
572 if (flag & REF_ISSYMREF)
573 item->util = xstrdup(symref);
574 else
575 item->util = NULL;
578 return 0;
581 static int migrate_file(struct remote *remote)
583 struct strbuf buf = STRBUF_INIT;
584 int i;
585 const char *path = NULL;
587 strbuf_addf(&buf, "remote.%s.url", remote->name);
588 for (i = 0; i < remote->url_nr; i++)
589 if (git_config_set_multivar(buf.buf, remote->url[i], "^$", 0))
590 return error(_("Could not append '%s' to '%s'"),
591 remote->url[i], buf.buf);
592 strbuf_reset(&buf);
593 strbuf_addf(&buf, "remote.%s.push", remote->name);
594 for (i = 0; i < remote->push_refspec_nr; i++)
595 if (git_config_set_multivar(buf.buf, remote->push_refspec[i], "^$", 0))
596 return error(_("Could not append '%s' to '%s'"),
597 remote->push_refspec[i], buf.buf);
598 strbuf_reset(&buf);
599 strbuf_addf(&buf, "remote.%s.fetch", remote->name);
600 for (i = 0; i < remote->fetch_refspec_nr; i++)
601 if (git_config_set_multivar(buf.buf, remote->fetch_refspec[i], "^$", 0))
602 return error(_("Could not append '%s' to '%s'"),
603 remote->fetch_refspec[i], buf.buf);
604 if (remote->origin == REMOTE_REMOTES)
605 path = git_path("remotes/%s", remote->name);
606 else if (remote->origin == REMOTE_BRANCHES)
607 path = git_path("branches/%s", remote->name);
608 if (path)
609 unlink_or_warn(path);
610 return 0;
613 static int mv(int argc, const char **argv)
615 struct option options[] = {
616 OPT_END()
618 struct remote *oldremote, *newremote;
619 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT,
620 old_remote_context = STRBUF_INIT;
621 struct string_list remote_branches = STRING_LIST_INIT_NODUP;
622 struct rename_info rename;
623 int i, refspec_updated = 0;
625 if (argc != 3)
626 usage_with_options(builtin_remote_rename_usage, options);
628 rename.old = argv[1];
629 rename.new = argv[2];
630 rename.remote_branches = &remote_branches;
632 oldremote = remote_get(rename.old);
633 if (!oldremote)
634 die(_("No such remote: %s"), rename.old);
636 if (!strcmp(rename.old, rename.new) && oldremote->origin != REMOTE_CONFIG)
637 return migrate_file(oldremote);
639 newremote = remote_get(rename.new);
640 if (newremote && (newremote->url_nr > 1 || newremote->fetch_refspec_nr))
641 die(_("remote %s already exists."), rename.new);
643 strbuf_addf(&buf, "refs/heads/test:refs/remotes/%s/test", rename.new);
644 if (!valid_fetch_refspec(buf.buf))
645 die(_("'%s' is not a valid remote name"), rename.new);
647 strbuf_reset(&buf);
648 strbuf_addf(&buf, "remote.%s", rename.old);
649 strbuf_addf(&buf2, "remote.%s", rename.new);
650 if (git_config_rename_section(buf.buf, buf2.buf) < 1)
651 return error(_("Could not rename config section '%s' to '%s'"),
652 buf.buf, buf2.buf);
654 strbuf_reset(&buf);
655 strbuf_addf(&buf, "remote.%s.fetch", rename.new);
656 if (git_config_set_multivar(buf.buf, NULL, NULL, 1))
657 return error(_("Could not remove config section '%s'"), buf.buf);
658 strbuf_addf(&old_remote_context, ":refs/remotes/%s/", rename.old);
659 for (i = 0; i < oldremote->fetch_refspec_nr; i++) {
660 char *ptr;
662 strbuf_reset(&buf2);
663 strbuf_addstr(&buf2, oldremote->fetch_refspec[i]);
664 ptr = strstr(buf2.buf, old_remote_context.buf);
665 if (ptr) {
666 refspec_updated = 1;
667 strbuf_splice(&buf2,
668 ptr-buf2.buf + strlen(":refs/remotes/"),
669 strlen(rename.old), rename.new,
670 strlen(rename.new));
671 } else
672 warning(_("Not updating non-default fetch refspec\n"
673 "\t%s\n"
674 "\tPlease update the configuration manually if necessary."),
675 buf2.buf);
677 if (git_config_set_multivar(buf.buf, buf2.buf, "^$", 0))
678 return error(_("Could not append '%s'"), buf.buf);
681 read_branches();
682 for (i = 0; i < branch_list.nr; i++) {
683 struct string_list_item *item = branch_list.items + i;
684 struct branch_info *info = item->util;
685 if (info->remote_name && !strcmp(info->remote_name, rename.old)) {
686 strbuf_reset(&buf);
687 strbuf_addf(&buf, "branch.%s.remote", item->string);
688 if (git_config_set(buf.buf, rename.new)) {
689 return error(_("Could not set '%s'"), buf.buf);
694 if (!refspec_updated)
695 return 0;
698 * First remove symrefs, then rename the rest, finally create
699 * the new symrefs.
701 for_each_ref(read_remote_branches, &rename);
702 for (i = 0; i < remote_branches.nr; i++) {
703 struct string_list_item *item = remote_branches.items + i;
704 int flag = 0;
705 unsigned char sha1[20];
707 read_ref_full(item->string, sha1, RESOLVE_REF_READING, &flag);
708 if (!(flag & REF_ISSYMREF))
709 continue;
710 if (delete_ref(item->string, NULL, REF_NODEREF))
711 die(_("deleting '%s' failed"), item->string);
713 for (i = 0; i < remote_branches.nr; i++) {
714 struct string_list_item *item = remote_branches.items + i;
716 if (item->util)
717 continue;
718 strbuf_reset(&buf);
719 strbuf_addstr(&buf, item->string);
720 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
721 rename.new, strlen(rename.new));
722 strbuf_reset(&buf2);
723 strbuf_addf(&buf2, "remote: renamed %s to %s",
724 item->string, buf.buf);
725 if (rename_ref(item->string, buf.buf, buf2.buf))
726 die(_("renaming '%s' failed"), item->string);
728 for (i = 0; i < remote_branches.nr; i++) {
729 struct string_list_item *item = remote_branches.items + i;
731 if (!item->util)
732 continue;
733 strbuf_reset(&buf);
734 strbuf_addstr(&buf, item->string);
735 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
736 rename.new, strlen(rename.new));
737 strbuf_reset(&buf2);
738 strbuf_addstr(&buf2, item->util);
739 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old),
740 rename.new, strlen(rename.new));
741 strbuf_reset(&buf3);
742 strbuf_addf(&buf3, "remote: renamed %s to %s",
743 item->string, buf.buf);
744 if (create_symref(buf.buf, buf2.buf, buf3.buf))
745 die(_("creating '%s' failed"), buf.buf);
747 return 0;
750 static int remove_branches(struct string_list *branches)
752 int i, result = 0;
753 struct ref_transaction *transaction;
754 struct strbuf err = STRBUF_INIT;
756 transaction = transaction_begin(&err);
757 if (!transaction)
758 die("%s", err.buf);
760 for (i = 0; i < branches->nr; i++)
761 if (transaction_delete_sha1(transaction,
762 branches->items[i].string, NULL,
763 0, 0, "remote-branches", &err)) {
764 result |= error("%s", err.buf);
765 goto cleanup;
767 if (transaction_commit(transaction, &err))
768 result |= error("%s", err.buf);
770 cleanup:
771 strbuf_release(&err);
772 transaction_free(transaction);
773 return result;
776 static int rm(int argc, const char **argv)
778 struct option options[] = {
779 OPT_END()
781 struct remote *remote;
782 struct strbuf buf = STRBUF_INIT;
783 struct known_remotes known_remotes = { NULL, NULL };
784 struct string_list branches = STRING_LIST_INIT_DUP;
785 struct string_list skipped = STRING_LIST_INIT_DUP;
786 struct branches_for_remote cb_data;
787 int i, result;
789 memset(&cb_data, 0, sizeof(cb_data));
790 cb_data.branches = &branches;
791 cb_data.skipped = &skipped;
792 cb_data.keep = &known_remotes;
794 if (argc != 2)
795 usage_with_options(builtin_remote_rm_usage, options);
797 remote = remote_get(argv[1]);
798 if (!remote)
799 die(_("No such remote: %s"), argv[1]);
801 known_remotes.to_delete = remote;
802 for_each_remote(add_known_remote, &known_remotes);
804 read_branches();
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++) {
811 strbuf_reset(&buf);
812 strbuf_addf(&buf, "branch.%s.%s",
813 item->string, *k);
814 if (git_config_set(buf.buf, NULL)) {
815 strbuf_release(&buf);
816 return -1;
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(add_branch_for_removal, &cb_data);
829 strbuf_release(&buf);
831 if (!result)
832 result = remove_branches(&branches);
833 string_list_clear(&branches, 1);
835 if (skipped.nr) {
836 fprintf_ln(stderr,
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:",
841 skipped.nr));
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);
848 if (!result) {
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);
854 return result;
857 static void clear_push_info(void *util, const char *string)
859 struct push_info *info = util;
860 free(info->dest);
861 free(info);
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)
880 return 0;
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));
887 return 0;
890 static int get_remote_ref_states(const char *name,
891 struct ref_states *states,
892 int query)
894 struct transport *transport;
895 const struct ref *remote_refs;
897 states->remote = remote_get(name);
898 if (!states->remote)
899 return error(_("No such remote: %s"), name);
901 read_branches();
903 if (query) {
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);
909 states->queried = 1;
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);
916 } else {
917 for_each_ref(append_ref_to_tracked_list, states);
918 sort_string_list(&states->tracked);
919 get_push_ref_states_noquery(states);
922 return 0;
925 struct show_info {
926 struct string_list *list;
927 struct ref_states *states;
928 int width, width2;
929 int any_rebase;
932 static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
934 struct show_info *info = cb_data;
935 int n = strlen(item->string);
936 if (n > info->width)
937 info->width = n;
938 string_list_insert(info->list, item->string);
939 return 0;
942 static int show_remote_info_item(struct string_list_item *item, void *cb_data)
944 struct show_info *info = cb_data;
945 struct ref_states *states = info->states;
946 const char *name = item->string;
948 if (states->queried) {
949 const char *fmt = "%s";
950 const char *arg = "";
951 if (string_list_has_string(&states->new, name)) {
952 fmt = _(" new (next fetch will store in remotes/%s)");
953 arg = states->remote->name;
954 } else if (string_list_has_string(&states->tracked, name))
955 arg = _(" tracked");
956 else if (string_list_has_string(&states->stale, name))
957 arg = _(" stale (use 'git remote prune' to remove)");
958 else
959 arg = _(" ???");
960 printf(" %-*s", info->width, name);
961 printf(fmt, arg);
962 printf("\n");
963 } else
964 printf(" %s\n", name);
966 return 0;
969 static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
971 struct show_info *show_info = cb_data;
972 struct ref_states *states = show_info->states;
973 struct branch_info *branch_info = branch_item->util;
974 struct string_list_item *item;
975 int n;
977 if (!branch_info->merge.nr || !branch_info->remote_name ||
978 strcmp(states->remote->name, branch_info->remote_name))
979 return 0;
980 if ((n = strlen(branch_item->string)) > show_info->width)
981 show_info->width = n;
982 if (branch_info->rebase)
983 show_info->any_rebase = 1;
985 item = string_list_insert(show_info->list, branch_item->string);
986 item->util = branch_info;
988 return 0;
991 static int show_local_info_item(struct string_list_item *item, void *cb_data)
993 struct show_info *show_info = cb_data;
994 struct branch_info *branch_info = item->util;
995 struct string_list *merge = &branch_info->merge;
996 const char *also;
997 int i;
999 if (branch_info->rebase && branch_info->merge.nr > 1) {
1000 error(_("invalid branch.%s.merge; cannot rebase onto > 1 branch"),
1001 item->string);
1002 return 0;
1005 printf(" %-*s ", show_info->width, item->string);
1006 if (branch_info->rebase) {
1007 printf_ln(_("rebases onto remote %s"), merge->items[0].string);
1008 return 0;
1009 } else if (show_info->any_rebase) {
1010 printf_ln(_(" merges with remote %s"), merge->items[0].string);
1011 also = _(" and with remote");
1012 } else {
1013 printf_ln(_("merges with remote %s"), merge->items[0].string);
1014 also = _(" and with remote");
1016 for (i = 1; i < merge->nr; i++)
1017 printf(" %-*s %s %s\n", show_info->width, "", also,
1018 merge->items[i].string);
1020 return 0;
1023 static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
1025 struct show_info *show_info = cb_data;
1026 struct push_info *push_info = push_item->util;
1027 struct string_list_item *item;
1028 int n;
1029 if ((n = strlen(push_item->string)) > show_info->width)
1030 show_info->width = n;
1031 if ((n = strlen(push_info->dest)) > show_info->width2)
1032 show_info->width2 = n;
1033 item = string_list_append(show_info->list, push_item->string);
1034 item->util = push_item->util;
1035 return 0;
1039 * Sorting comparison for a string list that has push_info
1040 * structs in its util field
1042 static int cmp_string_with_push(const void *va, const void *vb)
1044 const struct string_list_item *a = va;
1045 const struct string_list_item *b = vb;
1046 const struct push_info *a_push = a->util;
1047 const struct push_info *b_push = b->util;
1048 int cmp = strcmp(a->string, b->string);
1049 return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
1052 static int show_push_info_item(struct string_list_item *item, void *cb_data)
1054 struct show_info *show_info = cb_data;
1055 struct push_info *push_info = item->util;
1056 const char *src = item->string, *status = NULL;
1058 switch (push_info->status) {
1059 case PUSH_STATUS_CREATE:
1060 status = _("create");
1061 break;
1062 case PUSH_STATUS_DELETE:
1063 status = _("delete");
1064 src = _("(none)");
1065 break;
1066 case PUSH_STATUS_UPTODATE:
1067 status = _("up to date");
1068 break;
1069 case PUSH_STATUS_FASTFORWARD:
1070 status = _("fast-forwardable");
1071 break;
1072 case PUSH_STATUS_OUTOFDATE:
1073 status = _("local out of date");
1074 break;
1075 case PUSH_STATUS_NOTQUERIED:
1076 break;
1078 if (status) {
1079 if (push_info->forced)
1080 printf_ln(_(" %-*s forces to %-*s (%s)"), show_info->width, src,
1081 show_info->width2, push_info->dest, status);
1082 else
1083 printf_ln(_(" %-*s pushes to %-*s (%s)"), show_info->width, src,
1084 show_info->width2, push_info->dest, status);
1085 } else {
1086 if (push_info->forced)
1087 printf_ln(_(" %-*s forces to %s"), show_info->width, src,
1088 push_info->dest);
1089 else
1090 printf_ln(_(" %-*s pushes to %s"), show_info->width, src,
1091 push_info->dest);
1093 return 0;
1096 static int get_one_entry(struct remote *remote, void *priv)
1098 struct string_list *list = priv;
1099 struct strbuf url_buf = STRBUF_INIT;
1100 const char **url;
1101 int i, url_nr;
1103 if (remote->url_nr > 0) {
1104 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1105 string_list_append(list, remote->name)->util =
1106 strbuf_detach(&url_buf, NULL);
1107 } else
1108 string_list_append(list, remote->name)->util = NULL;
1109 if (remote->pushurl_nr) {
1110 url = remote->pushurl;
1111 url_nr = remote->pushurl_nr;
1112 } else {
1113 url = remote->url;
1114 url_nr = remote->url_nr;
1116 for (i = 0; i < url_nr; i++)
1118 strbuf_addf(&url_buf, "%s (push)", url[i]);
1119 string_list_append(list, remote->name)->util =
1120 strbuf_detach(&url_buf, NULL);
1123 return 0;
1126 static int show_all(void)
1128 struct string_list list = STRING_LIST_INIT_NODUP;
1129 int result;
1131 list.strdup_strings = 1;
1132 result = for_each_remote(get_one_entry, &list);
1134 if (!result) {
1135 int i;
1137 sort_string_list(&list);
1138 for (i = 0; i < list.nr; i++) {
1139 struct string_list_item *item = list.items + i;
1140 if (verbose)
1141 printf("%s\t%s\n", item->string,
1142 item->util ? (const char *)item->util : "");
1143 else {
1144 if (i && !strcmp((item - 1)->string, item->string))
1145 continue;
1146 printf("%s\n", item->string);
1150 string_list_clear(&list, 1);
1151 return result;
1154 static int show(int argc, const char **argv)
1156 int no_query = 0, result = 0, query_flag = 0;
1157 struct option options[] = {
1158 OPT_BOOL('n', NULL, &no_query, N_("do not query remotes")),
1159 OPT_END()
1161 struct ref_states states;
1162 struct string_list info_list = STRING_LIST_INIT_NODUP;
1163 struct show_info info;
1165 argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
1168 if (argc < 1)
1169 return show_all();
1171 if (!no_query)
1172 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
1174 memset(&states, 0, sizeof(states));
1175 memset(&info, 0, sizeof(info));
1176 info.states = &states;
1177 info.list = &info_list;
1178 for (; argc; argc--, argv++) {
1179 int i;
1180 const char **url;
1181 int url_nr;
1183 get_remote_ref_states(*argv, &states, query_flag);
1185 printf_ln(_("* remote %s"), *argv);
1186 printf_ln(_(" Fetch URL: %s"), states.remote->url_nr > 0 ?
1187 states.remote->url[0] : _("(no URL)"));
1188 if (states.remote->pushurl_nr) {
1189 url = states.remote->pushurl;
1190 url_nr = states.remote->pushurl_nr;
1191 } else {
1192 url = states.remote->url;
1193 url_nr = states.remote->url_nr;
1195 for (i = 0; i < url_nr; i++)
1196 printf_ln(_(" Push URL: %s"), url[i]);
1197 if (!i)
1198 printf_ln(_(" Push URL: %s"), "(no URL)");
1199 if (no_query)
1200 printf_ln(_(" HEAD branch: %s"), "(not queried)");
1201 else if (!states.heads.nr)
1202 printf_ln(_(" HEAD branch: %s"), "(unknown)");
1203 else if (states.heads.nr == 1)
1204 printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
1205 else {
1206 printf(_(" HEAD branch (remote HEAD is ambiguous,"
1207 " may be one of the following):\n"));
1208 for (i = 0; i < states.heads.nr; i++)
1209 printf(" %s\n", states.heads.items[i].string);
1212 /* remote branch info */
1213 info.width = 0;
1214 for_each_string_list(&states.new, add_remote_to_show_info, &info);
1215 for_each_string_list(&states.tracked, add_remote_to_show_info, &info);
1216 for_each_string_list(&states.stale, add_remote_to_show_info, &info);
1217 if (info.list->nr)
1218 printf_ln(Q_(" Remote branch:%s",
1219 " Remote branches:%s",
1220 info.list->nr),
1221 no_query ? _(" (status not queried)") : "");
1222 for_each_string_list(info.list, show_remote_info_item, &info);
1223 string_list_clear(info.list, 0);
1225 /* git pull info */
1226 info.width = 0;
1227 info.any_rebase = 0;
1228 for_each_string_list(&branch_list, add_local_to_show_info, &info);
1229 if (info.list->nr)
1230 printf_ln(Q_(" Local branch configured for 'git pull':",
1231 " Local branches configured for 'git pull':",
1232 info.list->nr));
1233 for_each_string_list(info.list, show_local_info_item, &info);
1234 string_list_clear(info.list, 0);
1236 /* git push info */
1237 if (states.remote->mirror)
1238 printf_ln(_(" Local refs will be mirrored by 'git push'"));
1240 info.width = info.width2 = 0;
1241 for_each_string_list(&states.push, add_push_to_show_info, &info);
1242 qsort(info.list->items, info.list->nr,
1243 sizeof(*info.list->items), cmp_string_with_push);
1244 if (info.list->nr)
1245 printf_ln(Q_(" Local ref configured for 'git push'%s:",
1246 " Local refs configured for 'git push'%s:",
1247 info.list->nr),
1248 no_query ? _(" (status not queried)") : "");
1249 for_each_string_list(info.list, show_push_info_item, &info);
1250 string_list_clear(info.list, 0);
1252 free_remote_ref_states(&states);
1255 return result;
1258 static int set_head(int argc, const char **argv)
1260 int i, opt_a = 0, opt_d = 0, result = 0;
1261 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1262 char *head_name = NULL;
1264 struct option options[] = {
1265 OPT_BOOL('a', "auto", &opt_a,
1266 N_("set refs/remotes/<name>/HEAD according to remote")),
1267 OPT_BOOL('d', "delete", &opt_d,
1268 N_("delete refs/remotes/<name>/HEAD")),
1269 OPT_END()
1271 argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
1273 if (argc)
1274 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1276 if (!opt_a && !opt_d && argc == 2) {
1277 head_name = xstrdup(argv[1]);
1278 } else if (opt_a && !opt_d && argc == 1) {
1279 struct ref_states states;
1280 memset(&states, 0, sizeof(states));
1281 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1282 if (!states.heads.nr)
1283 result |= error(_("Cannot determine remote HEAD"));
1284 else if (states.heads.nr > 1) {
1285 result |= error(_("Multiple remote HEAD branches. "
1286 "Please choose one explicitly with:"));
1287 for (i = 0; i < states.heads.nr; i++)
1288 fprintf(stderr, " git remote set-head %s %s\n",
1289 argv[0], states.heads.items[i].string);
1290 } else
1291 head_name = xstrdup(states.heads.items[0].string);
1292 free_remote_ref_states(&states);
1293 } else if (opt_d && !opt_a && argc == 1) {
1294 if (delete_ref(buf.buf, NULL, REF_NODEREF))
1295 result |= error(_("Could not delete %s"), buf.buf);
1296 } else
1297 usage_with_options(builtin_remote_sethead_usage, options);
1299 if (head_name) {
1300 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1301 /* make sure it's valid */
1302 if (!ref_exists(buf2.buf))
1303 result |= error(_("Not a valid ref: %s"), buf2.buf);
1304 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
1305 result |= error(_("Could not setup %s"), buf.buf);
1306 if (opt_a)
1307 printf("%s/HEAD set to %s\n", argv[0], head_name);
1308 free(head_name);
1311 strbuf_release(&buf);
1312 strbuf_release(&buf2);
1313 return result;
1316 static int prune_remote(const char *remote, int dry_run)
1318 int result = 0, i;
1319 struct ref_states states;
1320 struct string_list delete_refs_list = STRING_LIST_INIT_NODUP;
1321 const char *dangling_msg = dry_run
1322 ? _(" %s will become dangling!")
1323 : _(" %s has become dangling!");
1324 struct ref_transaction *transaction = NULL;
1325 struct strbuf err = STRBUF_INIT;
1327 memset(&states, 0, sizeof(states));
1328 get_remote_ref_states(remote, &states, GET_REF_STATES);
1330 if (states.stale.nr) {
1331 printf_ln(_("Pruning %s"), remote);
1332 printf_ln(_("URL: %s"),
1333 states.remote->url_nr
1334 ? states.remote->url[0]
1335 : _("(no URL)"));
1338 if (!dry_run) {
1339 transaction = transaction_begin(&err);
1340 if (!transaction)
1341 die("%s", err.buf);
1343 for (i = 0; i < states.stale.nr; i++) {
1344 const char *refname = states.stale.items[i].util;
1346 string_list_insert(&delete_refs_list, refname);
1348 if (!dry_run) {
1349 if (transaction_delete_sha1(transaction,
1350 refname, NULL,
1351 0, 0, "remote-branches", &err)) {
1352 result |= error("%s", err.buf);
1353 goto cleanup;
1357 if (dry_run)
1358 printf_ln(_(" * [would prune] %s"),
1359 abbrev_ref(refname, "refs/remotes/"));
1360 else
1361 printf_ln(_(" * [pruned] %s"),
1362 abbrev_ref(refname, "refs/remotes/"));
1365 if (!dry_run)
1366 if (transaction_commit(transaction, &err))
1367 result |= error("%s", err.buf);
1369 cleanup:
1370 strbuf_release(&err);
1371 transaction_free(transaction);
1372 warn_dangling_symrefs(stdout, dangling_msg, &delete_refs_list);
1373 string_list_clear(&delete_refs_list, 0);
1375 free_remote_ref_states(&states);
1376 return result;
1379 static int prune(int argc, const char **argv)
1381 int dry_run = 0, result = 0;
1382 struct option options[] = {
1383 OPT__DRY_RUN(&dry_run, N_("dry run")),
1384 OPT_END()
1387 argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
1390 if (argc < 1)
1391 usage_with_options(builtin_remote_prune_usage, options);
1393 for (; argc; argc--, argv++)
1394 result |= prune_remote(*argv, dry_run);
1396 return result;
1399 static int get_remote_default(const char *key, const char *value, void *priv)
1401 if (strcmp(key, "remotes.default") == 0) {
1402 int *found = priv;
1403 *found = 1;
1405 return 0;
1408 static int update(int argc, const char **argv)
1410 int i, prune = -1;
1411 struct option options[] = {
1412 OPT_BOOL('p', "prune", &prune,
1413 N_("prune remotes after fetching")),
1414 OPT_END()
1416 struct argv_array fetch_argv = ARGV_ARRAY_INIT;
1417 int default_defined = 0;
1418 int retval;
1420 argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
1421 PARSE_OPT_KEEP_ARGV0);
1423 argv_array_push(&fetch_argv, "fetch");
1425 if (prune != -1)
1426 argv_array_push(&fetch_argv, prune ? "--prune" : "--no-prune");
1427 if (verbose)
1428 argv_array_push(&fetch_argv, "-v");
1429 argv_array_push(&fetch_argv, "--multiple");
1430 if (argc < 2)
1431 argv_array_push(&fetch_argv, "default");
1432 for (i = 1; i < argc; i++)
1433 argv_array_push(&fetch_argv, argv[i]);
1435 if (strcmp(fetch_argv.argv[fetch_argv.argc-1], "default") == 0) {
1436 git_config(get_remote_default, &default_defined);
1437 if (!default_defined) {
1438 argv_array_pop(&fetch_argv);
1439 argv_array_push(&fetch_argv, "--all");
1443 retval = run_command_v_opt(fetch_argv.argv, RUN_GIT_CMD);
1444 argv_array_clear(&fetch_argv);
1445 return retval;
1448 static int remove_all_fetch_refspecs(const char *remote, const char *key)
1450 return git_config_set_multivar(key, NULL, NULL, 1);
1453 static int add_branches(struct remote *remote, const char **branches,
1454 const char *key)
1456 const char *remotename = remote->name;
1457 int mirror = remote->mirror;
1458 struct strbuf refspec = STRBUF_INIT;
1460 for (; *branches; branches++)
1461 if (add_branch(key, *branches, remotename, mirror, &refspec)) {
1462 strbuf_release(&refspec);
1463 return 1;
1466 strbuf_release(&refspec);
1467 return 0;
1470 static int set_remote_branches(const char *remotename, const char **branches,
1471 int add_mode)
1473 struct strbuf key = STRBUF_INIT;
1474 struct remote *remote;
1476 strbuf_addf(&key, "remote.%s.fetch", remotename);
1478 if (!remote_is_configured(remotename))
1479 die(_("No such remote '%s'"), remotename);
1480 remote = remote_get(remotename);
1482 if (!add_mode && remove_all_fetch_refspecs(remotename, key.buf)) {
1483 strbuf_release(&key);
1484 return 1;
1486 if (add_branches(remote, branches, key.buf)) {
1487 strbuf_release(&key);
1488 return 1;
1491 strbuf_release(&key);
1492 return 0;
1495 static int set_branches(int argc, const char **argv)
1497 int add_mode = 0;
1498 struct option options[] = {
1499 OPT_BOOL('\0', "add", &add_mode, N_("add branch")),
1500 OPT_END()
1503 argc = parse_options(argc, argv, NULL, options,
1504 builtin_remote_setbranches_usage, 0);
1505 if (argc == 0) {
1506 error(_("no remote specified"));
1507 usage_with_options(builtin_remote_setbranches_usage, options);
1509 argv[argc] = NULL;
1511 return set_remote_branches(argv[0], argv + 1, add_mode);
1514 static int set_url(int argc, const char **argv)
1516 int i, push_mode = 0, add_mode = 0, delete_mode = 0;
1517 int matches = 0, negative_matches = 0;
1518 const char *remotename = NULL;
1519 const char *newurl = NULL;
1520 const char *oldurl = NULL;
1521 struct remote *remote;
1522 regex_t old_regex;
1523 const char **urlset;
1524 int urlset_nr;
1525 struct strbuf name_buf = STRBUF_INIT;
1526 struct option options[] = {
1527 OPT_BOOL('\0', "push", &push_mode,
1528 N_("manipulate push URLs")),
1529 OPT_BOOL('\0', "add", &add_mode,
1530 N_("add URL")),
1531 OPT_BOOL('\0', "delete", &delete_mode,
1532 N_("delete URLs")),
1533 OPT_END()
1535 argc = parse_options(argc, argv, NULL, options, builtin_remote_seturl_usage,
1536 PARSE_OPT_KEEP_ARGV0);
1538 if (add_mode && delete_mode)
1539 die(_("--add --delete doesn't make sense"));
1541 if (argc < 3 || argc > 4 || ((add_mode || delete_mode) && argc != 3))
1542 usage_with_options(builtin_remote_seturl_usage, options);
1544 remotename = argv[1];
1545 newurl = argv[2];
1546 if (argc > 3)
1547 oldurl = argv[3];
1549 if (delete_mode)
1550 oldurl = newurl;
1552 if (!remote_is_configured(remotename))
1553 die(_("No such remote '%s'"), remotename);
1554 remote = remote_get(remotename);
1556 if (push_mode) {
1557 strbuf_addf(&name_buf, "remote.%s.pushurl", remotename);
1558 urlset = remote->pushurl;
1559 urlset_nr = remote->pushurl_nr;
1560 } else {
1561 strbuf_addf(&name_buf, "remote.%s.url", remotename);
1562 urlset = remote->url;
1563 urlset_nr = remote->url_nr;
1566 /* Special cases that add new entry. */
1567 if ((!oldurl && !delete_mode) || add_mode) {
1568 if (add_mode)
1569 git_config_set_multivar(name_buf.buf, newurl,
1570 "^$", 0);
1571 else
1572 git_config_set(name_buf.buf, newurl);
1573 strbuf_release(&name_buf);
1574 return 0;
1577 /* Old URL specified. Demand that one matches. */
1578 if (regcomp(&old_regex, oldurl, REG_EXTENDED))
1579 die(_("Invalid old URL pattern: %s"), oldurl);
1581 for (i = 0; i < urlset_nr; i++)
1582 if (!regexec(&old_regex, urlset[i], 0, NULL, 0))
1583 matches++;
1584 else
1585 negative_matches++;
1586 if (!delete_mode && !matches)
1587 die(_("No such URL found: %s"), oldurl);
1588 if (delete_mode && !negative_matches && !push_mode)
1589 die(_("Will not delete all non-push URLs"));
1591 regfree(&old_regex);
1593 if (!delete_mode)
1594 git_config_set_multivar(name_buf.buf, newurl, oldurl, 0);
1595 else
1596 git_config_set_multivar(name_buf.buf, NULL, oldurl, 1);
1597 return 0;
1600 int cmd_remote(int argc, const char **argv, const char *prefix)
1602 struct option options[] = {
1603 OPT__VERBOSE(&verbose, N_("be verbose; must be placed before a subcommand")),
1604 OPT_END()
1606 int result;
1608 argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
1609 PARSE_OPT_STOP_AT_NON_OPTION);
1611 if (argc < 1)
1612 result = show_all();
1613 else if (!strcmp(argv[0], "add"))
1614 result = add(argc, argv);
1615 else if (!strcmp(argv[0], "rename"))
1616 result = mv(argc, argv);
1617 else if (!strcmp(argv[0], "rm") || !strcmp(argv[0], "remove"))
1618 result = rm(argc, argv);
1619 else if (!strcmp(argv[0], "set-head"))
1620 result = set_head(argc, argv);
1621 else if (!strcmp(argv[0], "set-branches"))
1622 result = set_branches(argc, argv);
1623 else if (!strcmp(argv[0], "set-url"))
1624 result = set_url(argc, argv);
1625 else if (!strcmp(argv[0], "show"))
1626 result = show(argc, argv);
1627 else if (!strcmp(argv[0], "prune"))
1628 result = prune(argc, argv);
1629 else if (!strcmp(argv[0], "update"))
1630 result = update(argc, argv);
1631 else {
1632 error(_("Unknown subcommand: %s"), argv[0]);
1633 usage_with_options(builtin_remote_usage, options);
1636 return result ? 1 : 0;