Code

remote: write correct fetch spec when renaming remote 'remote'
[git.git] / builtin / remote.c
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"
10 static const char * const builtin_remote_usage[] = {
11         "git remote [-v | --verbose]",
12         "git remote add [-t <branch>] [-m <master>] [-f] [--mirror=<fetch|push>] <name> <url>",
13         "git remote rename <old> <new>",
14         "git remote rm <name>",
15         "git remote set-head <name> (-a | -d | <branch>)",
16         "git remote [-v | --verbose] show [-n] <name>",
17         "git remote prune [-n | --dry-run] <name>",
18         "git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]",
19         "git remote set-branches <name> [--add] <branch>...",
20         "git remote set-url <name> <newurl> [<oldurl>]",
21         "git remote set-url --add <name> <newurl>",
22         "git remote set-url --delete <name> <url>",
23         NULL
24 };
26 static const char * const builtin_remote_add_usage[] = {
27         "git remote add [<options>] <name> <url>",
28         NULL
29 };
31 static const char * const builtin_remote_rename_usage[] = {
32         "git remote rename <old> <new>",
33         NULL
34 };
36 static const char * const builtin_remote_rm_usage[] = {
37         "git remote rm <name>",
38         NULL
39 };
41 static const char * const builtin_remote_sethead_usage[] = {
42         "git remote set-head <name> (-a | -d | <branch>])",
43         NULL
44 };
46 static const char * const builtin_remote_setbranches_usage[] = {
47         "git remote set-branches <name> <branch>...",
48         "git remote set-branches --add <name> <branch>...",
49         NULL
50 };
52 static const char * const builtin_remote_show_usage[] = {
53         "git remote show [<options>] <name>",
54         NULL
55 };
57 static const char * const builtin_remote_prune_usage[] = {
58         "git remote prune [<options>] <name>",
59         NULL
60 };
62 static const char * const builtin_remote_update_usage[] = {
63         "git remote update [<options>] [<group> | <remote>]...",
64         NULL
65 };
67 static const char * const builtin_remote_seturl_usage[] = {
68         "git remote set-url [--push] <name> <newurl> [<oldurl>]",
69         "git remote set-url --add <name> <newurl>",
70         "git remote set-url --delete <name> <url>",
71         NULL
72 };
74 #define GET_REF_STATES (1<<0)
75 #define GET_HEAD_NAMES (1<<1)
76 #define GET_PUSH_REF_STATES (1<<2)
78 static int verbose;
80 static int show_all(void);
81 static int prune_remote(const char *remote, int dry_run);
83 static inline int postfixcmp(const char *string, const char *postfix)
84 {
85         int len1 = strlen(string), len2 = strlen(postfix);
86         if (len1 < len2)
87                 return 1;
88         return strcmp(string + len1 - len2, postfix);
89 }
91 static int opt_parse_track(const struct option *opt, const char *arg, int not)
92 {
93         struct string_list *list = opt->value;
94         if (not)
95                 string_list_clear(list, 0);
96         else
97                 string_list_append(list, arg);
98         return 0;
99 }
101 static int fetch_remote(const char *name)
103         const char *argv[] = { "fetch", name, NULL, NULL };
104         if (verbose) {
105                 argv[1] = "-v";
106                 argv[2] = name;
107         }
108         printf("Updating %s\n", name);
109         if (run_command_v_opt(argv, RUN_GIT_CMD))
110                 return error("Could not fetch %s", name);
111         return 0;
114 enum {
115         TAGS_UNSET = 0,
116         TAGS_DEFAULT = 1,
117         TAGS_SET = 2
118 };
120 #define MIRROR_NONE 0
121 #define MIRROR_FETCH 1
122 #define MIRROR_PUSH 2
123 #define MIRROR_BOTH (MIRROR_FETCH|MIRROR_PUSH)
125 static int add_branch(const char *key, const char *branchname,
126                 const char *remotename, int mirror, struct strbuf *tmp)
128         strbuf_reset(tmp);
129         strbuf_addch(tmp, '+');
130         if (mirror)
131                 strbuf_addf(tmp, "refs/%s:refs/%s",
132                                 branchname, branchname);
133         else
134                 strbuf_addf(tmp, "refs/heads/%s:refs/remotes/%s/%s",
135                                 branchname, remotename, branchname);
136         return git_config_set_multivar(key, tmp->buf, "^$", 0);
139 static const char mirror_advice[] =
140 "--mirror is dangerous and deprecated; please\n"
141 "\t use --mirror=fetch or --mirror=push instead";
143 static int parse_mirror_opt(const struct option *opt, const char *arg, int not)
145         unsigned *mirror = opt->value;
146         if (not)
147                 *mirror = MIRROR_NONE;
148         else if (!arg) {
149                 warning("%s", mirror_advice);
150                 *mirror = MIRROR_BOTH;
151         }
152         else if (!strcmp(arg, "fetch"))
153                 *mirror = MIRROR_FETCH;
154         else if (!strcmp(arg, "push"))
155                 *mirror = MIRROR_PUSH;
156         else
157                 return error("unknown mirror argument: %s", arg);
158         return 0;
161 static int add(int argc, const char **argv)
163         int fetch = 0, fetch_tags = TAGS_DEFAULT;
164         unsigned mirror = MIRROR_NONE;
165         struct string_list track = STRING_LIST_INIT_NODUP;
166         const char *master = NULL;
167         struct remote *remote;
168         struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
169         const char *name, *url;
170         int i;
172         struct option options[] = {
173                 OPT_BOOLEAN('f', "fetch", &fetch, "fetch the remote branches"),
174                 OPT_SET_INT(0, "tags", &fetch_tags,
175                             "import all tags and associated objects when fetching",
176                             TAGS_SET),
177                 OPT_SET_INT(0, NULL, &fetch_tags,
178                             "or do not fetch any tag at all (--no-tags)", TAGS_UNSET),
179                 OPT_CALLBACK('t', "track", &track, "branch",
180                         "branch(es) to track", opt_parse_track),
181                 OPT_STRING('m', "master", &master, "branch", "master branch"),
182                 { OPTION_CALLBACK, 0, "mirror", &mirror, "push|fetch",
183                         "set up remote as a mirror to push to or fetch from",
184                         PARSE_OPT_OPTARG, parse_mirror_opt },
185                 OPT_END()
186         };
188         argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
189                              0);
191         if (argc < 2)
192                 usage_with_options(builtin_remote_add_usage, options);
194         if (mirror && master)
195                 die("specifying a master branch makes no sense with --mirror");
196         if (mirror && !(mirror & MIRROR_FETCH) && track.nr)
197                 die("specifying branches to track makes sense only with fetch mirrors");
199         name = argv[0];
200         url = argv[1];
202         remote = remote_get(name);
203         if (remote && (remote->url_nr > 1 || strcmp(name, remote->url[0]) ||
204                         remote->fetch_refspec_nr))
205                 die("remote %s already exists.", name);
207         strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
208         if (!valid_fetch_refspec(buf2.buf))
209                 die("'%s' is not a valid remote name", name);
211         strbuf_addf(&buf, "remote.%s.url", name);
212         if (git_config_set(buf.buf, url))
213                 return 1;
215         if (!mirror || mirror & MIRROR_FETCH) {
216                 strbuf_reset(&buf);
217                 strbuf_addf(&buf, "remote.%s.fetch", name);
218                 if (track.nr == 0)
219                         string_list_append(&track, "*");
220                 for (i = 0; i < track.nr; i++) {
221                         if (add_branch(buf.buf, track.items[i].string,
222                                        name, mirror, &buf2))
223                                 return 1;
224                 }
225         }
227         if (mirror & MIRROR_PUSH) {
228                 strbuf_reset(&buf);
229                 strbuf_addf(&buf, "remote.%s.mirror", name);
230                 if (git_config_set(buf.buf, "true"))
231                         return 1;
232         }
234         if (fetch_tags != TAGS_DEFAULT) {
235                 strbuf_reset(&buf);
236                 strbuf_addf(&buf, "remote.%s.tagopt", name);
237                 if (git_config_set(buf.buf,
238                         fetch_tags == TAGS_SET ? "--tags" : "--no-tags"))
239                         return 1;
240         }
242         if (fetch && fetch_remote(name))
243                 return 1;
245         if (master) {
246                 strbuf_reset(&buf);
247                 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
249                 strbuf_reset(&buf2);
250                 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
252                 if (create_symref(buf.buf, buf2.buf, "remote add"))
253                         return error("Could not setup master '%s'", master);
254         }
256         strbuf_release(&buf);
257         strbuf_release(&buf2);
258         string_list_clear(&track, 0);
260         return 0;
263 struct branch_info {
264         char *remote_name;
265         struct string_list merge;
266         int rebase;
267 };
269 static struct string_list branch_list;
271 static const char *abbrev_ref(const char *name, const char *prefix)
273         const char *abbrev = skip_prefix(name, prefix);
274         if (abbrev)
275                 return abbrev;
276         return name;
278 #define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
280 static int config_read_branches(const char *key, const char *value, void *cb)
282         if (!prefixcmp(key, "branch.")) {
283                 const char *orig_key = key;
284                 char *name;
285                 struct string_list_item *item;
286                 struct branch_info *info;
287                 enum { REMOTE, MERGE, REBASE } type;
289                 key += 7;
290                 if (!postfixcmp(key, ".remote")) {
291                         name = xstrndup(key, strlen(key) - 7);
292                         type = REMOTE;
293                 } else if (!postfixcmp(key, ".merge")) {
294                         name = xstrndup(key, strlen(key) - 6);
295                         type = MERGE;
296                 } else if (!postfixcmp(key, ".rebase")) {
297                         name = xstrndup(key, strlen(key) - 7);
298                         type = REBASE;
299                 } else
300                         return 0;
302                 item = string_list_insert(&branch_list, name);
304                 if (!item->util)
305                         item->util = xcalloc(sizeof(struct branch_info), 1);
306                 info = item->util;
307                 if (type == REMOTE) {
308                         if (info->remote_name)
309                                 warning("more than one %s", orig_key);
310                         info->remote_name = xstrdup(value);
311                 } else if (type == MERGE) {
312                         char *space = strchr(value, ' ');
313                         value = abbrev_branch(value);
314                         while (space) {
315                                 char *merge;
316                                 merge = xstrndup(value, space - value);
317                                 string_list_append(&info->merge, merge);
318                                 value = abbrev_branch(space + 1);
319                                 space = strchr(value, ' ');
320                         }
321                         string_list_append(&info->merge, xstrdup(value));
322                 } else
323                         info->rebase = git_config_bool(orig_key, value);
324         }
325         return 0;
328 static void read_branches(void)
330         if (branch_list.nr)
331                 return;
332         git_config(config_read_branches, NULL);
335 struct ref_states {
336         struct remote *remote;
337         struct string_list new, stale, tracked, heads, push;
338         int queried;
339 };
341 static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
343         struct ref *fetch_map = NULL, **tail = &fetch_map;
344         struct ref *ref, *stale_refs;
345         int i;
347         for (i = 0; i < states->remote->fetch_refspec_nr; i++)
348                 if (get_fetch_map(remote_refs, states->remote->fetch + i, &tail, 1))
349                         die("Could not get fetch map for refspec %s",
350                                 states->remote->fetch_refspec[i]);
352         states->new.strdup_strings = 1;
353         states->tracked.strdup_strings = 1;
354         states->stale.strdup_strings = 1;
355         for (ref = fetch_map; ref; ref = ref->next) {
356                 unsigned char sha1[20];
357                 if (!ref->peer_ref || read_ref(ref->peer_ref->name, sha1))
358                         string_list_append(&states->new, abbrev_branch(ref->name));
359                 else
360                         string_list_append(&states->tracked, abbrev_branch(ref->name));
361         }
362         stale_refs = get_stale_heads(states->remote, fetch_map);
363         for (ref = stale_refs; ref; ref = ref->next) {
364                 struct string_list_item *item =
365                         string_list_append(&states->stale, abbrev_branch(ref->name));
366                 item->util = xstrdup(ref->name);
367         }
368         free_refs(stale_refs);
369         free_refs(fetch_map);
371         sort_string_list(&states->new);
372         sort_string_list(&states->tracked);
373         sort_string_list(&states->stale);
375         return 0;
378 struct push_info {
379         char *dest;
380         int forced;
381         enum {
382                 PUSH_STATUS_CREATE = 0,
383                 PUSH_STATUS_DELETE,
384                 PUSH_STATUS_UPTODATE,
385                 PUSH_STATUS_FASTFORWARD,
386                 PUSH_STATUS_OUTOFDATE,
387                 PUSH_STATUS_NOTQUERIED
388         } status;
389 };
391 static int get_push_ref_states(const struct ref *remote_refs,
392         struct ref_states *states)
394         struct remote *remote = states->remote;
395         struct ref *ref, *local_refs, *push_map;
396         if (remote->mirror)
397                 return 0;
399         local_refs = get_local_heads();
400         push_map = copy_ref_list(remote_refs);
402         match_refs(local_refs, &push_map, remote->push_refspec_nr,
403                    remote->push_refspec, MATCH_REFS_NONE);
405         states->push.strdup_strings = 1;
406         for (ref = push_map; ref; ref = ref->next) {
407                 struct string_list_item *item;
408                 struct push_info *info;
410                 if (!ref->peer_ref)
411                         continue;
412                 hashcpy(ref->new_sha1, ref->peer_ref->new_sha1);
414                 item = string_list_append(&states->push,
415                                           abbrev_branch(ref->peer_ref->name));
416                 item->util = xcalloc(sizeof(struct push_info), 1);
417                 info = item->util;
418                 info->forced = ref->force;
419                 info->dest = xstrdup(abbrev_branch(ref->name));
421                 if (is_null_sha1(ref->new_sha1)) {
422                         info->status = PUSH_STATUS_DELETE;
423                 } else if (!hashcmp(ref->old_sha1, ref->new_sha1))
424                         info->status = PUSH_STATUS_UPTODATE;
425                 else if (is_null_sha1(ref->old_sha1))
426                         info->status = PUSH_STATUS_CREATE;
427                 else if (has_sha1_file(ref->old_sha1) &&
428                          ref_newer(ref->new_sha1, ref->old_sha1))
429                         info->status = PUSH_STATUS_FASTFORWARD;
430                 else
431                         info->status = PUSH_STATUS_OUTOFDATE;
432         }
433         free_refs(local_refs);
434         free_refs(push_map);
435         return 0;
438 static int get_push_ref_states_noquery(struct ref_states *states)
440         int i;
441         struct remote *remote = states->remote;
442         struct string_list_item *item;
443         struct push_info *info;
445         if (remote->mirror)
446                 return 0;
448         states->push.strdup_strings = 1;
449         if (!remote->push_refspec_nr) {
450                 item = string_list_append(&states->push, "(matching)");
451                 info = item->util = xcalloc(sizeof(struct push_info), 1);
452                 info->status = PUSH_STATUS_NOTQUERIED;
453                 info->dest = xstrdup(item->string);
454         }
455         for (i = 0; i < remote->push_refspec_nr; i++) {
456                 struct refspec *spec = remote->push + i;
457                 if (spec->matching)
458                         item = string_list_append(&states->push, "(matching)");
459                 else if (strlen(spec->src))
460                         item = string_list_append(&states->push, spec->src);
461                 else
462                         item = string_list_append(&states->push, "(delete)");
464                 info = item->util = xcalloc(sizeof(struct push_info), 1);
465                 info->forced = spec->force;
466                 info->status = PUSH_STATUS_NOTQUERIED;
467                 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
468         }
469         return 0;
472 static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
474         struct ref *ref, *matches;
475         struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
476         struct refspec refspec;
478         refspec.force = 0;
479         refspec.pattern = 1;
480         refspec.src = refspec.dst = "refs/heads/*";
481         states->heads.strdup_strings = 1;
482         get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
483         matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
484                                     fetch_map, 1);
485         for (ref = matches; ref; ref = ref->next)
486                 string_list_append(&states->heads, abbrev_branch(ref->name));
488         free_refs(fetch_map);
489         free_refs(matches);
491         return 0;
494 struct known_remote {
495         struct known_remote *next;
496         struct remote *remote;
497 };
499 struct known_remotes {
500         struct remote *to_delete;
501         struct known_remote *list;
502 };
504 static int add_known_remote(struct remote *remote, void *cb_data)
506         struct known_remotes *all = cb_data;
507         struct known_remote *r;
509         if (!strcmp(all->to_delete->name, remote->name))
510                 return 0;
512         r = xmalloc(sizeof(*r));
513         r->remote = remote;
514         r->next = all->list;
515         all->list = r;
516         return 0;
519 struct branches_for_remote {
520         struct remote *remote;
521         struct string_list *branches, *skipped;
522         struct known_remotes *keep;
523 };
525 static int add_branch_for_removal(const char *refname,
526         const unsigned char *sha1, int flags, void *cb_data)
528         struct branches_for_remote *branches = cb_data;
529         struct refspec refspec;
530         struct string_list_item *item;
531         struct known_remote *kr;
533         memset(&refspec, 0, sizeof(refspec));
534         refspec.dst = (char *)refname;
535         if (remote_find_tracking(branches->remote, &refspec))
536                 return 0;
538         /* don't delete a branch if another remote also uses it */
539         for (kr = branches->keep->list; kr; kr = kr->next) {
540                 memset(&refspec, 0, sizeof(refspec));
541                 refspec.dst = (char *)refname;
542                 if (!remote_find_tracking(kr->remote, &refspec))
543                         return 0;
544         }
546         /* don't delete non-remote-tracking refs */
547         if (prefixcmp(refname, "refs/remotes")) {
548                 /* advise user how to delete local branches */
549                 if (!prefixcmp(refname, "refs/heads/"))
550                         string_list_append(branches->skipped,
551                                            abbrev_branch(refname));
552                 /* silently skip over other non-remote refs */
553                 return 0;
554         }
556         /* make sure that symrefs are deleted */
557         if (flags & REF_ISSYMREF)
558                 return unlink(git_path("%s", refname));
560         item = string_list_append(branches->branches, refname);
561         item->util = xmalloc(20);
562         hashcpy(item->util, sha1);
564         return 0;
567 struct rename_info {
568         const char *old;
569         const char *new;
570         struct string_list *remote_branches;
571 };
573 static int read_remote_branches(const char *refname,
574         const unsigned char *sha1, int flags, void *cb_data)
576         struct rename_info *rename = cb_data;
577         struct strbuf buf = STRBUF_INIT;
578         struct string_list_item *item;
579         int flag;
580         unsigned char orig_sha1[20];
581         const char *symref;
583         strbuf_addf(&buf, "refs/remotes/%s", rename->old);
584         if (!prefixcmp(refname, buf.buf)) {
585                 item = string_list_append(rename->remote_branches, xstrdup(refname));
586                 symref = resolve_ref(refname, orig_sha1, 1, &flag);
587                 if (flag & REF_ISSYMREF)
588                         item->util = xstrdup(symref);
589                 else
590                         item->util = NULL;
591         }
593         return 0;
596 static int migrate_file(struct remote *remote)
598         struct strbuf buf = STRBUF_INIT;
599         int i;
600         char *path = NULL;
602         strbuf_addf(&buf, "remote.%s.url", remote->name);
603         for (i = 0; i < remote->url_nr; i++)
604                 if (git_config_set_multivar(buf.buf, remote->url[i], "^$", 0))
605                         return error("Could not append '%s' to '%s'",
606                                         remote->url[i], buf.buf);
607         strbuf_reset(&buf);
608         strbuf_addf(&buf, "remote.%s.push", remote->name);
609         for (i = 0; i < remote->push_refspec_nr; i++)
610                 if (git_config_set_multivar(buf.buf, remote->push_refspec[i], "^$", 0))
611                         return error("Could not append '%s' to '%s'",
612                                         remote->push_refspec[i], buf.buf);
613         strbuf_reset(&buf);
614         strbuf_addf(&buf, "remote.%s.fetch", remote->name);
615         for (i = 0; i < remote->fetch_refspec_nr; i++)
616                 if (git_config_set_multivar(buf.buf, remote->fetch_refspec[i], "^$", 0))
617                         return error("Could not append '%s' to '%s'",
618                                         remote->fetch_refspec[i], buf.buf);
619         if (remote->origin == REMOTE_REMOTES)
620                 path = git_path("remotes/%s", remote->name);
621         else if (remote->origin == REMOTE_BRANCHES)
622                 path = git_path("branches/%s", remote->name);
623         if (path)
624                 unlink_or_warn(path);
625         return 0;
628 static int mv(int argc, const char **argv)
630         struct option options[] = {
631                 OPT_END()
632         };
633         struct remote *oldremote, *newremote;
634         struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT,
635                 old_remote_context = STRBUF_INIT;
636         struct string_list remote_branches = STRING_LIST_INIT_NODUP;
637         struct rename_info rename;
638         int i;
640         if (argc != 3)
641                 usage_with_options(builtin_remote_rename_usage, options);
643         rename.old = argv[1];
644         rename.new = argv[2];
645         rename.remote_branches = &remote_branches;
647         oldremote = remote_get(rename.old);
648         if (!oldremote)
649                 die("No such remote: %s", rename.old);
651         if (!strcmp(rename.old, rename.new) && oldremote->origin != REMOTE_CONFIG)
652                 return migrate_file(oldremote);
654         newremote = remote_get(rename.new);
655         if (newremote && (newremote->url_nr > 1 || newremote->fetch_refspec_nr))
656                 die("remote %s already exists.", rename.new);
658         strbuf_addf(&buf, "refs/heads/test:refs/remotes/%s/test", rename.new);
659         if (!valid_fetch_refspec(buf.buf))
660                 die("'%s' is not a valid remote name", rename.new);
662         strbuf_reset(&buf);
663         strbuf_addf(&buf, "remote.%s", rename.old);
664         strbuf_addf(&buf2, "remote.%s", rename.new);
665         if (git_config_rename_section(buf.buf, buf2.buf) < 1)
666                 return error("Could not rename config section '%s' to '%s'",
667                                 buf.buf, buf2.buf);
669         strbuf_reset(&buf);
670         strbuf_addf(&buf, "remote.%s.fetch", rename.new);
671         if (git_config_set_multivar(buf.buf, NULL, NULL, 1))
672                 return error("Could not remove config section '%s'", buf.buf);
673         strbuf_addf(&old_remote_context, ":refs/remotes/%s/", rename.old);
674         for (i = 0; i < oldremote->fetch_refspec_nr; i++) {
675                 char *ptr;
677                 strbuf_reset(&buf2);
678                 strbuf_addstr(&buf2, oldremote->fetch_refspec[i]);
679                 ptr = strstr(buf2.buf, old_remote_context.buf);
680                 if (ptr)
681                         strbuf_splice(&buf2,
682                                       ptr-buf2.buf + strlen(":refs/remotes/"),
683                                       strlen(rename.old), rename.new,
684                                       strlen(rename.new));
685                 if (git_config_set_multivar(buf.buf, buf2.buf, "^$", 0))
686                         return error("Could not append '%s'", buf.buf);
687         }
689         read_branches();
690         for (i = 0; i < branch_list.nr; i++) {
691                 struct string_list_item *item = branch_list.items + i;
692                 struct branch_info *info = item->util;
693                 if (info->remote_name && !strcmp(info->remote_name, rename.old)) {
694                         strbuf_reset(&buf);
695                         strbuf_addf(&buf, "branch.%s.remote", item->string);
696                         if (git_config_set(buf.buf, rename.new)) {
697                                 return error("Could not set '%s'", buf.buf);
698                         }
699                 }
700         }
702         /*
703          * First remove symrefs, then rename the rest, finally create
704          * the new symrefs.
705          */
706         for_each_ref(read_remote_branches, &rename);
707         for (i = 0; i < remote_branches.nr; i++) {
708                 struct string_list_item *item = remote_branches.items + i;
709                 int flag = 0;
710                 unsigned char sha1[20];
712                 resolve_ref(item->string, sha1, 1, &flag);
713                 if (!(flag & REF_ISSYMREF))
714                         continue;
715                 if (delete_ref(item->string, NULL, REF_NODEREF))
716                         die("deleting '%s' failed", item->string);
717         }
718         for (i = 0; i < remote_branches.nr; i++) {
719                 struct string_list_item *item = remote_branches.items + i;
721                 if (item->util)
722                         continue;
723                 strbuf_reset(&buf);
724                 strbuf_addstr(&buf, item->string);
725                 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
726                                 rename.new, strlen(rename.new));
727                 strbuf_reset(&buf2);
728                 strbuf_addf(&buf2, "remote: renamed %s to %s",
729                                 item->string, buf.buf);
730                 if (rename_ref(item->string, buf.buf, buf2.buf))
731                         die("renaming '%s' failed", item->string);
732         }
733         for (i = 0; i < remote_branches.nr; i++) {
734                 struct string_list_item *item = remote_branches.items + i;
736                 if (!item->util)
737                         continue;
738                 strbuf_reset(&buf);
739                 strbuf_addstr(&buf, item->string);
740                 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
741                                 rename.new, strlen(rename.new));
742                 strbuf_reset(&buf2);
743                 strbuf_addstr(&buf2, item->util);
744                 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old),
745                                 rename.new, strlen(rename.new));
746                 strbuf_reset(&buf3);
747                 strbuf_addf(&buf3, "remote: renamed %s to %s",
748                                 item->string, buf.buf);
749                 if (create_symref(buf.buf, buf2.buf, buf3.buf))
750                         die("creating '%s' failed", buf.buf);
751         }
752         return 0;
755 static int remove_branches(struct string_list *branches)
757         int i, result = 0;
758         for (i = 0; i < branches->nr; i++) {
759                 struct string_list_item *item = branches->items + i;
760                 const char *refname = item->string;
761                 unsigned char *sha1 = item->util;
763                 if (delete_ref(refname, sha1, 0))
764                         result |= error("Could not remove branch %s", refname);
765         }
766         return result;
769 static int rm(int argc, const char **argv)
771         struct option options[] = {
772                 OPT_END()
773         };
774         struct remote *remote;
775         struct strbuf buf = STRBUF_INIT;
776         struct known_remotes known_remotes = { NULL, NULL };
777         struct string_list branches = STRING_LIST_INIT_DUP;
778         struct string_list skipped = STRING_LIST_INIT_DUP;
779         struct branches_for_remote cb_data;
780         int i, result;
782         memset(&cb_data, 0, sizeof(cb_data));
783         cb_data.branches = &branches;
784         cb_data.skipped = &skipped;
785         cb_data.keep = &known_remotes;
787         if (argc != 2)
788                 usage_with_options(builtin_remote_rm_usage, options);
790         remote = remote_get(argv[1]);
791         if (!remote)
792                 die("No such remote: %s", argv[1]);
794         known_remotes.to_delete = remote;
795         for_each_remote(add_known_remote, &known_remotes);
797         strbuf_addf(&buf, "remote.%s", remote->name);
798         if (git_config_rename_section(buf.buf, NULL) < 1)
799                 return error("Could not remove config section '%s'", buf.buf);
801         read_branches();
802         for (i = 0; i < branch_list.nr; i++) {
803                 struct string_list_item *item = branch_list.items + i;
804                 struct branch_info *info = item->util;
805                 if (info->remote_name && !strcmp(info->remote_name, remote->name)) {
806                         const char *keys[] = { "remote", "merge", NULL }, **k;
807                         for (k = keys; *k; k++) {
808                                 strbuf_reset(&buf);
809                                 strbuf_addf(&buf, "branch.%s.%s",
810                                                 item->string, *k);
811                                 if (git_config_set(buf.buf, NULL)) {
812                                         strbuf_release(&buf);
813                                         return -1;
814                                 }
815                         }
816                 }
817         }
819         /*
820          * We cannot just pass a function to for_each_ref() which deletes
821          * the branches one by one, since for_each_ref() relies on cached
822          * refs, which are invalidated when deleting a branch.
823          */
824         cb_data.remote = remote;
825         result = for_each_ref(add_branch_for_removal, &cb_data);
826         strbuf_release(&buf);
828         if (!result)
829                 result = remove_branches(&branches);
830         string_list_clear(&branches, 1);
832         if (skipped.nr) {
833                 fprintf(stderr, skipped.nr == 1 ?
834                         "Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"
835                         "to delete it, use:\n" :
836                         "Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"
837                         "to delete them, use:\n");
838                 for (i = 0; i < skipped.nr; i++)
839                         fprintf(stderr, "  git branch -d %s\n",
840                                 skipped.items[i].string);
841         }
842         string_list_clear(&skipped, 0);
844         return result;
847 static void clear_push_info(void *util, const char *string)
849         struct push_info *info = util;
850         free(info->dest);
851         free(info);
854 static void free_remote_ref_states(struct ref_states *states)
856         string_list_clear(&states->new, 0);
857         string_list_clear(&states->stale, 1);
858         string_list_clear(&states->tracked, 0);
859         string_list_clear(&states->heads, 0);
860         string_list_clear_func(&states->push, clear_push_info);
863 static int append_ref_to_tracked_list(const char *refname,
864         const unsigned char *sha1, int flags, void *cb_data)
866         struct ref_states *states = cb_data;
867         struct refspec refspec;
869         if (flags & REF_ISSYMREF)
870                 return 0;
872         memset(&refspec, 0, sizeof(refspec));
873         refspec.dst = (char *)refname;
874         if (!remote_find_tracking(states->remote, &refspec))
875                 string_list_append(&states->tracked, abbrev_branch(refspec.src));
877         return 0;
880 static int get_remote_ref_states(const char *name,
881                                  struct ref_states *states,
882                                  int query)
884         struct transport *transport;
885         const struct ref *remote_refs;
887         states->remote = remote_get(name);
888         if (!states->remote)
889                 return error("No such remote: %s", name);
891         read_branches();
893         if (query) {
894                 transport = transport_get(states->remote, states->remote->url_nr > 0 ?
895                         states->remote->url[0] : NULL);
896                 remote_refs = transport_get_remote_refs(transport);
897                 transport_disconnect(transport);
899                 states->queried = 1;
900                 if (query & GET_REF_STATES)
901                         get_ref_states(remote_refs, states);
902                 if (query & GET_HEAD_NAMES)
903                         get_head_names(remote_refs, states);
904                 if (query & GET_PUSH_REF_STATES)
905                         get_push_ref_states(remote_refs, states);
906         } else {
907                 for_each_ref(append_ref_to_tracked_list, states);
908                 sort_string_list(&states->tracked);
909                 get_push_ref_states_noquery(states);
910         }
912         return 0;
915 struct show_info {
916         struct string_list *list;
917         struct ref_states *states;
918         int width, width2;
919         int any_rebase;
920 };
922 static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
924         struct show_info *info = cb_data;
925         int n = strlen(item->string);
926         if (n > info->width)
927                 info->width = n;
928         string_list_insert(info->list, item->string);
929         return 0;
932 static int show_remote_info_item(struct string_list_item *item, void *cb_data)
934         struct show_info *info = cb_data;
935         struct ref_states *states = info->states;
936         const char *name = item->string;
938         if (states->queried) {
939                 const char *fmt = "%s";
940                 const char *arg = "";
941                 if (string_list_has_string(&states->new, name)) {
942                         fmt = " new (next fetch will store in remotes/%s)";
943                         arg = states->remote->name;
944                 } else if (string_list_has_string(&states->tracked, name))
945                         arg = " tracked";
946                 else if (string_list_has_string(&states->stale, name))
947                         arg = " stale (use 'git remote prune' to remove)";
948                 else
949                         arg = " ???";
950                 printf("    %-*s", info->width, name);
951                 printf(fmt, arg);
952                 printf("\n");
953         } else
954                 printf("    %s\n", name);
956         return 0;
959 static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
961         struct show_info *show_info = cb_data;
962         struct ref_states *states = show_info->states;
963         struct branch_info *branch_info = branch_item->util;
964         struct string_list_item *item;
965         int n;
967         if (!branch_info->merge.nr || !branch_info->remote_name ||
968             strcmp(states->remote->name, branch_info->remote_name))
969                 return 0;
970         if ((n = strlen(branch_item->string)) > show_info->width)
971                 show_info->width = n;
972         if (branch_info->rebase)
973                 show_info->any_rebase = 1;
975         item = string_list_insert(show_info->list, branch_item->string);
976         item->util = branch_info;
978         return 0;
981 static int show_local_info_item(struct string_list_item *item, void *cb_data)
983         struct show_info *show_info = cb_data;
984         struct branch_info *branch_info = item->util;
985         struct string_list *merge = &branch_info->merge;
986         const char *also;
987         int i;
989         if (branch_info->rebase && branch_info->merge.nr > 1) {
990                 error("invalid branch.%s.merge; cannot rebase onto > 1 branch",
991                         item->string);
992                 return 0;
993         }
995         printf("    %-*s ", show_info->width, item->string);
996         if (branch_info->rebase) {
997                 printf("rebases onto remote %s\n", merge->items[0].string);
998                 return 0;
999         } else if (show_info->any_rebase) {
1000                 printf(" merges with remote %s\n", merge->items[0].string);
1001                 also = "    and with remote";
1002         } else {
1003                 printf("merges with remote %s\n", merge->items[0].string);
1004                 also = "   and with remote";
1005         }
1006         for (i = 1; i < merge->nr; i++)
1007                 printf("    %-*s %s %s\n", show_info->width, "", also,
1008                        merge->items[i].string);
1010         return 0;
1013 static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
1015         struct show_info *show_info = cb_data;
1016         struct push_info *push_info = push_item->util;
1017         struct string_list_item *item;
1018         int n;
1019         if ((n = strlen(push_item->string)) > show_info->width)
1020                 show_info->width = n;
1021         if ((n = strlen(push_info->dest)) > show_info->width2)
1022                 show_info->width2 = n;
1023         item = string_list_append(show_info->list, push_item->string);
1024         item->util = push_item->util;
1025         return 0;
1028 /*
1029  * Sorting comparison for a string list that has push_info
1030  * structs in its util field
1031  */
1032 static int cmp_string_with_push(const void *va, const void *vb)
1034         const struct string_list_item *a = va;
1035         const struct string_list_item *b = vb;
1036         const struct push_info *a_push = a->util;
1037         const struct push_info *b_push = b->util;
1038         int cmp = strcmp(a->string, b->string);
1039         return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
1042 static int show_push_info_item(struct string_list_item *item, void *cb_data)
1044         struct show_info *show_info = cb_data;
1045         struct push_info *push_info = item->util;
1046         char *src = item->string, *status = NULL;
1048         switch (push_info->status) {
1049         case PUSH_STATUS_CREATE:
1050                 status = "create";
1051                 break;
1052         case PUSH_STATUS_DELETE:
1053                 status = "delete";
1054                 src = "(none)";
1055                 break;
1056         case PUSH_STATUS_UPTODATE:
1057                 status = "up to date";
1058                 break;
1059         case PUSH_STATUS_FASTFORWARD:
1060                 status = "fast-forwardable";
1061                 break;
1062         case PUSH_STATUS_OUTOFDATE:
1063                 status = "local out of date";
1064                 break;
1065         case PUSH_STATUS_NOTQUERIED:
1066                 break;
1067         }
1068         if (status)
1069                 printf("    %-*s %s to %-*s (%s)\n", show_info->width, src,
1070                         push_info->forced ? "forces" : "pushes",
1071                         show_info->width2, push_info->dest, status);
1072         else
1073                 printf("    %-*s %s to %s\n", show_info->width, src,
1074                         push_info->forced ? "forces" : "pushes",
1075                         push_info->dest);
1076         return 0;
1079 static int show(int argc, const char **argv)
1081         int no_query = 0, result = 0, query_flag = 0;
1082         struct option options[] = {
1083                 OPT_BOOLEAN('n', NULL, &no_query, "do not query remotes"),
1084                 OPT_END()
1085         };
1086         struct ref_states states;
1087         struct string_list info_list = STRING_LIST_INIT_NODUP;
1088         struct show_info info;
1090         argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
1091                              0);
1093         if (argc < 1)
1094                 return show_all();
1096         if (!no_query)
1097                 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
1099         memset(&states, 0, sizeof(states));
1100         memset(&info, 0, sizeof(info));
1101         info.states = &states;
1102         info.list = &info_list;
1103         for (; argc; argc--, argv++) {
1104                 int i;
1105                 const char **url;
1106                 int url_nr;
1108                 get_remote_ref_states(*argv, &states, query_flag);
1110                 printf("* remote %s\n", *argv);
1111                 printf("  Fetch URL: %s\n", states.remote->url_nr > 0 ?
1112                         states.remote->url[0] : "(no URL)");
1113                 if (states.remote->pushurl_nr) {
1114                         url = states.remote->pushurl;
1115                         url_nr = states.remote->pushurl_nr;
1116                 } else {
1117                         url = states.remote->url;
1118                         url_nr = states.remote->url_nr;
1119                 }
1120                 for (i = 0; i < url_nr; i++)
1121                         printf("  Push  URL: %s\n", url[i]);
1122                 if (!i)
1123                         printf("  Push  URL: %s\n", "(no URL)");
1124                 if (no_query)
1125                         printf("  HEAD branch: (not queried)\n");
1126                 else if (!states.heads.nr)
1127                         printf("  HEAD branch: (unknown)\n");
1128                 else if (states.heads.nr == 1)
1129                         printf("  HEAD branch: %s\n", states.heads.items[0].string);
1130                 else {
1131                         printf("  HEAD branch (remote HEAD is ambiguous,"
1132                                " may be one of the following):\n");
1133                         for (i = 0; i < states.heads.nr; i++)
1134                                 printf("    %s\n", states.heads.items[i].string);
1135                 }
1137                 /* remote branch info */
1138                 info.width = 0;
1139                 for_each_string_list(&states.new, add_remote_to_show_info, &info);
1140                 for_each_string_list(&states.tracked, add_remote_to_show_info, &info);
1141                 for_each_string_list(&states.stale, add_remote_to_show_info, &info);
1142                 if (info.list->nr)
1143                         printf("  Remote branch%s:%s\n",
1144                                info.list->nr > 1 ? "es" : "",
1145                                 no_query ? " (status not queried)" : "");
1146                 for_each_string_list(info.list, show_remote_info_item, &info);
1147                 string_list_clear(info.list, 0);
1149                 /* git pull info */
1150                 info.width = 0;
1151                 info.any_rebase = 0;
1152                 for_each_string_list(&branch_list, add_local_to_show_info, &info);
1153                 if (info.list->nr)
1154                         printf("  Local branch%s configured for 'git pull':\n",
1155                                info.list->nr > 1 ? "es" : "");
1156                 for_each_string_list(info.list, show_local_info_item, &info);
1157                 string_list_clear(info.list, 0);
1159                 /* git push info */
1160                 if (states.remote->mirror)
1161                         printf("  Local refs will be mirrored by 'git push'\n");
1163                 info.width = info.width2 = 0;
1164                 for_each_string_list(&states.push, add_push_to_show_info, &info);
1165                 qsort(info.list->items, info.list->nr,
1166                         sizeof(*info.list->items), cmp_string_with_push);
1167                 if (info.list->nr)
1168                         printf("  Local ref%s configured for 'git push'%s:\n",
1169                                 info.list->nr > 1 ? "s" : "",
1170                                 no_query ? " (status not queried)" : "");
1171                 for_each_string_list(info.list, show_push_info_item, &info);
1172                 string_list_clear(info.list, 0);
1174                 free_remote_ref_states(&states);
1175         }
1177         return result;
1180 static int set_head(int argc, const char **argv)
1182         int i, opt_a = 0, opt_d = 0, result = 0;
1183         struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1184         char *head_name = NULL;
1186         struct option options[] = {
1187                 OPT_BOOLEAN('a', "auto", &opt_a,
1188                             "set refs/remotes/<name>/HEAD according to remote"),
1189                 OPT_BOOLEAN('d', "delete", &opt_d,
1190                             "delete refs/remotes/<name>/HEAD"),
1191                 OPT_END()
1192         };
1193         argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
1194                              0);
1195         if (argc)
1196                 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1198         if (!opt_a && !opt_d && argc == 2) {
1199                 head_name = xstrdup(argv[1]);
1200         } else if (opt_a && !opt_d && argc == 1) {
1201                 struct ref_states states;
1202                 memset(&states, 0, sizeof(states));
1203                 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1204                 if (!states.heads.nr)
1205                         result |= error("Cannot determine remote HEAD");
1206                 else if (states.heads.nr > 1) {
1207                         result |= error("Multiple remote HEAD branches. "
1208                                         "Please choose one explicitly with:");
1209                         for (i = 0; i < states.heads.nr; i++)
1210                                 fprintf(stderr, "  git remote set-head %s %s\n",
1211                                         argv[0], states.heads.items[i].string);
1212                 } else
1213                         head_name = xstrdup(states.heads.items[0].string);
1214                 free_remote_ref_states(&states);
1215         } else if (opt_d && !opt_a && argc == 1) {
1216                 if (delete_ref(buf.buf, NULL, REF_NODEREF))
1217                         result |= error("Could not delete %s", buf.buf);
1218         } else
1219                 usage_with_options(builtin_remote_sethead_usage, options);
1221         if (head_name) {
1222                 unsigned char sha1[20];
1223                 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1224                 /* make sure it's valid */
1225                 if (!resolve_ref(buf2.buf, sha1, 1, NULL))
1226                         result |= error("Not a valid ref: %s", buf2.buf);
1227                 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
1228                         result |= error("Could not setup %s", buf.buf);
1229                 if (opt_a)
1230                         printf("%s/HEAD set to %s\n", argv[0], head_name);
1231                 free(head_name);
1232         }
1234         strbuf_release(&buf);
1235         strbuf_release(&buf2);
1236         return result;
1239 static int prune(int argc, const char **argv)
1241         int dry_run = 0, result = 0;
1242         struct option options[] = {
1243                 OPT__DRY_RUN(&dry_run, "dry run"),
1244                 OPT_END()
1245         };
1247         argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
1248                              0);
1250         if (argc < 1)
1251                 usage_with_options(builtin_remote_prune_usage, options);
1253         for (; argc; argc--, argv++)
1254                 result |= prune_remote(*argv, dry_run);
1256         return result;
1259 static int prune_remote(const char *remote, int dry_run)
1261         int result = 0, i;
1262         struct ref_states states;
1263         const char *dangling_msg = dry_run
1264                 ? " %s will become dangling!\n"
1265                 : " %s has become dangling!\n";
1267         memset(&states, 0, sizeof(states));
1268         get_remote_ref_states(remote, &states, GET_REF_STATES);
1270         if (states.stale.nr) {
1271                 printf("Pruning %s\n", remote);
1272                 printf("URL: %s\n",
1273                        states.remote->url_nr
1274                        ? states.remote->url[0]
1275                        : "(no URL)");
1276         }
1278         for (i = 0; i < states.stale.nr; i++) {
1279                 const char *refname = states.stale.items[i].util;
1281                 if (!dry_run)
1282                         result |= delete_ref(refname, NULL, 0);
1284                 printf(" * [%s] %s\n", dry_run ? "would prune" : "pruned",
1285                        abbrev_ref(refname, "refs/remotes/"));
1286                 warn_dangling_symref(stdout, dangling_msg, refname);
1287         }
1289         free_remote_ref_states(&states);
1290         return result;
1293 static int get_remote_default(const char *key, const char *value, void *priv)
1295         if (strcmp(key, "remotes.default") == 0) {
1296                 int *found = priv;
1297                 *found = 1;
1298         }
1299         return 0;
1302 static int update(int argc, const char **argv)
1304         int i, prune = 0;
1305         struct option options[] = {
1306                 OPT_BOOLEAN('p', "prune", &prune,
1307                             "prune remotes after fetching"),
1308                 OPT_END()
1309         };
1310         const char **fetch_argv;
1311         int fetch_argc = 0;
1312         int default_defined = 0;
1314         fetch_argv = xmalloc(sizeof(char *) * (argc+5));
1316         argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
1317                              PARSE_OPT_KEEP_ARGV0);
1319         fetch_argv[fetch_argc++] = "fetch";
1321         if (prune)
1322                 fetch_argv[fetch_argc++] = "--prune";
1323         if (verbose)
1324                 fetch_argv[fetch_argc++] = "-v";
1325         fetch_argv[fetch_argc++] = "--multiple";
1326         if (argc < 2)
1327                 fetch_argv[fetch_argc++] = "default";
1328         for (i = 1; i < argc; i++)
1329                 fetch_argv[fetch_argc++] = argv[i];
1331         if (strcmp(fetch_argv[fetch_argc-1], "default") == 0) {
1332                 git_config(get_remote_default, &default_defined);
1333                 if (!default_defined)
1334                         fetch_argv[fetch_argc-1] = "--all";
1335         }
1337         fetch_argv[fetch_argc] = NULL;
1339         return run_command_v_opt(fetch_argv, RUN_GIT_CMD);
1342 static int remove_all_fetch_refspecs(const char *remote, const char *key)
1344         return git_config_set_multivar(key, NULL, NULL, 1);
1347 static int add_branches(struct remote *remote, const char **branches,
1348                         const char *key)
1350         const char *remotename = remote->name;
1351         int mirror = remote->mirror;
1352         struct strbuf refspec = STRBUF_INIT;
1354         for (; *branches; branches++)
1355                 if (add_branch(key, *branches, remotename, mirror, &refspec)) {
1356                         strbuf_release(&refspec);
1357                         return 1;
1358                 }
1360         strbuf_release(&refspec);
1361         return 0;
1364 static int set_remote_branches(const char *remotename, const char **branches,
1365                                 int add_mode)
1367         struct strbuf key = STRBUF_INIT;
1368         struct remote *remote;
1370         strbuf_addf(&key, "remote.%s.fetch", remotename);
1372         if (!remote_is_configured(remotename))
1373                 die("No such remote '%s'", remotename);
1374         remote = remote_get(remotename);
1376         if (!add_mode && remove_all_fetch_refspecs(remotename, key.buf)) {
1377                 strbuf_release(&key);
1378                 return 1;
1379         }
1380         if (add_branches(remote, branches, key.buf)) {
1381                 strbuf_release(&key);
1382                 return 1;
1383         }
1385         strbuf_release(&key);
1386         return 0;
1389 static int set_branches(int argc, const char **argv)
1391         int add_mode = 0;
1392         struct option options[] = {
1393                 OPT_BOOLEAN('\0', "add", &add_mode, "add branch"),
1394                 OPT_END()
1395         };
1397         argc = parse_options(argc, argv, NULL, options,
1398                              builtin_remote_setbranches_usage, 0);
1399         if (argc == 0) {
1400                 error("no remote specified");
1401                 usage_with_options(builtin_remote_seturl_usage, options);
1402         }
1403         argv[argc] = NULL;
1405         return set_remote_branches(argv[0], argv + 1, add_mode);
1408 static int set_url(int argc, const char **argv)
1410         int i, push_mode = 0, add_mode = 0, delete_mode = 0;
1411         int matches = 0, negative_matches = 0;
1412         const char *remotename = NULL;
1413         const char *newurl = NULL;
1414         const char *oldurl = NULL;
1415         struct remote *remote;
1416         regex_t old_regex;
1417         const char **urlset;
1418         int urlset_nr;
1419         struct strbuf name_buf = STRBUF_INIT;
1420         struct option options[] = {
1421                 OPT_BOOLEAN('\0', "push", &push_mode,
1422                             "manipulate push URLs"),
1423                 OPT_BOOLEAN('\0', "add", &add_mode,
1424                             "add URL"),
1425                 OPT_BOOLEAN('\0', "delete", &delete_mode,
1426                             "delete URLs"),
1427                 OPT_END()
1428         };
1429         argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
1430                              PARSE_OPT_KEEP_ARGV0);
1432         if (add_mode && delete_mode)
1433                 die("--add --delete doesn't make sense");
1435         if (argc < 3 || argc > 4 || ((add_mode || delete_mode) && argc != 3))
1436                 usage_with_options(builtin_remote_seturl_usage, options);
1438         remotename = argv[1];
1439         newurl = argv[2];
1440         if (argc > 3)
1441                 oldurl = argv[3];
1443         if (delete_mode)
1444                 oldurl = newurl;
1446         if (!remote_is_configured(remotename))
1447                 die("No such remote '%s'", remotename);
1448         remote = remote_get(remotename);
1450         if (push_mode) {
1451                 strbuf_addf(&name_buf, "remote.%s.pushurl", remotename);
1452                 urlset = remote->pushurl;
1453                 urlset_nr = remote->pushurl_nr;
1454         } else {
1455                 strbuf_addf(&name_buf, "remote.%s.url", remotename);
1456                 urlset = remote->url;
1457                 urlset_nr = remote->url_nr;
1458         }
1460         /* Special cases that add new entry. */
1461         if ((!oldurl && !delete_mode) || add_mode) {
1462                 if (add_mode)
1463                         git_config_set_multivar(name_buf.buf, newurl,
1464                                 "^$", 0);
1465                 else
1466                         git_config_set(name_buf.buf, newurl);
1467                 strbuf_release(&name_buf);
1468                 return 0;
1469         }
1471         /* Old URL specified. Demand that one matches. */
1472         if (regcomp(&old_regex, oldurl, REG_EXTENDED))
1473                 die("Invalid old URL pattern: %s", oldurl);
1475         for (i = 0; i < urlset_nr; i++)
1476                 if (!regexec(&old_regex, urlset[i], 0, NULL, 0))
1477                         matches++;
1478                 else
1479                         negative_matches++;
1480         if (!delete_mode && !matches)
1481                 die("No such URL found: %s", oldurl);
1482         if (delete_mode && !negative_matches && !push_mode)
1483                 die("Will not delete all non-push URLs");
1485         regfree(&old_regex);
1487         if (!delete_mode)
1488                 git_config_set_multivar(name_buf.buf, newurl, oldurl, 0);
1489         else
1490                 git_config_set_multivar(name_buf.buf, NULL, oldurl, 1);
1491         return 0;
1494 static int get_one_entry(struct remote *remote, void *priv)
1496         struct string_list *list = priv;
1497         struct strbuf url_buf = STRBUF_INIT;
1498         const char **url;
1499         int i, url_nr;
1501         if (remote->url_nr > 0) {
1502                 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1503                 string_list_append(list, remote->name)->util =
1504                                 strbuf_detach(&url_buf, NULL);
1505         } else
1506                 string_list_append(list, remote->name)->util = NULL;
1507         if (remote->pushurl_nr) {
1508                 url = remote->pushurl;
1509                 url_nr = remote->pushurl_nr;
1510         } else {
1511                 url = remote->url;
1512                 url_nr = remote->url_nr;
1513         }
1514         for (i = 0; i < url_nr; i++)
1515         {
1516                 strbuf_addf(&url_buf, "%s (push)", url[i]);
1517                 string_list_append(list, remote->name)->util =
1518                                 strbuf_detach(&url_buf, NULL);
1519         }
1521         return 0;
1524 static int show_all(void)
1526         struct string_list list = STRING_LIST_INIT_NODUP;
1527         int result;
1529         list.strdup_strings = 1;
1530         result = for_each_remote(get_one_entry, &list);
1532         if (!result) {
1533                 int i;
1535                 sort_string_list(&list);
1536                 for (i = 0; i < list.nr; i++) {
1537                         struct string_list_item *item = list.items + i;
1538                         if (verbose)
1539                                 printf("%s\t%s\n", item->string,
1540                                         item->util ? (const char *)item->util : "");
1541                         else {
1542                                 if (i && !strcmp((item - 1)->string, item->string))
1543                                         continue;
1544                                 printf("%s\n", item->string);
1545                         }
1546                 }
1547         }
1548         string_list_clear(&list, 1);
1549         return result;
1552 int cmd_remote(int argc, const char **argv, const char *prefix)
1554         struct option options[] = {
1555                 OPT__VERBOSE(&verbose, "be verbose; must be placed before a subcommand"),
1556                 OPT_END()
1557         };
1558         int result;
1560         argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
1561                 PARSE_OPT_STOP_AT_NON_OPTION);
1563         if (argc < 1)
1564                 result = show_all();
1565         else if (!strcmp(argv[0], "add"))
1566                 result = add(argc, argv);
1567         else if (!strcmp(argv[0], "rename"))
1568                 result = mv(argc, argv);
1569         else if (!strcmp(argv[0], "rm"))
1570                 result = rm(argc, argv);
1571         else if (!strcmp(argv[0], "set-head"))
1572                 result = set_head(argc, argv);
1573         else if (!strcmp(argv[0], "set-branches"))
1574                 result = set_branches(argc, argv);
1575         else if (!strcmp(argv[0], "set-url"))
1576                 result = set_url(argc, argv);
1577         else if (!strcmp(argv[0], "show"))
1578                 result = show(argc, argv);
1579         else if (!strcmp(argv[0], "prune"))
1580                 result = prune(argc, argv);
1581         else if (!strcmp(argv[0], "update"))
1582                 result = update(argc, argv);
1583         else {
1584                 error("Unknown subcommand: %s", argv[0]);
1585                 usage_with_options(builtin_remote_usage, options);
1586         }
1588         return result ? 1 : 0;