blob: 9487c019092ec0d5085244438d99e4d2d91a4147 [file] [log] [blame]
Stephen Boydc2e86ad2011-03-22 00:51:05 -07001#include "builtin.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07002#include "config.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +00003#include "parse-options.h"
4#include "transport.h"
5#include "remote.h"
Johannes Schindelinc455c872008-07-21 19:03:49 +01006#include "string-list.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +00007#include "strbuf.h"
8#include "run-command.h"
9#include "refs.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -070010#include "object-store.h"
Michael Haggerty86075902013-10-30 06:33:03 +010011#include "argv-array.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +000012
13static const char * const builtin_remote_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070014 N_("git remote [-v | --verbose]"),
Alex Henrie9c9b4f22015-01-13 00:44:47 -070015 N_("git remote add [-t <branch>] [-m <master>] [-f] [--tags | --no-tags] [--mirror=<fetch|push>] <name> <url>"),
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070016 N_("git remote rename <old> <new>"),
Junio C Hamano90585602012-09-12 14:21:58 -070017 N_("git remote remove <name>"),
Alex Henrie9c9b4f22015-01-13 00:44:47 -070018 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070019 N_("git remote [-v | --verbose] show [-n] <name>"),
20 N_("git remote prune [-n | --dry-run] <name>"),
21 N_("git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"),
22 N_("git remote set-branches [--add] <name> <branch>..."),
Ben Boeckel96f78d32015-09-15 21:53:47 -040023 N_("git remote get-url [--push] [--all] <name>"),
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070024 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
25 N_("git remote set-url --add <name> <newurl>"),
26 N_("git remote set-url --delete <name> <url>"),
Johannes Schindelin211c8962008-02-29 01:45:45 +000027 NULL
28};
29
Tim Henigan45041072009-11-20 18:43:13 -050030static const char * const builtin_remote_add_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070031 N_("git remote add [<options>] <name> <url>"),
Tim Henigan45041072009-11-20 18:43:13 -050032 NULL
33};
34
35static const char * const builtin_remote_rename_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070036 N_("git remote rename <old> <new>"),
Tim Henigan45041072009-11-20 18:43:13 -050037 NULL
38};
39
40static const char * const builtin_remote_rm_usage[] = {
Junio C Hamano90585602012-09-12 14:21:58 -070041 N_("git remote remove <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050042 NULL
43};
44
45static const char * const builtin_remote_sethead_usage[] = {
Philip Oakleye49c8f32013-09-21 16:51:46 +010046 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
Tim Henigan45041072009-11-20 18:43:13 -050047 NULL
48};
49
Jonathan Nieder3d8b6942010-05-19 13:38:50 -050050static const char * const builtin_remote_setbranches_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070051 N_("git remote set-branches <name> <branch>..."),
52 N_("git remote set-branches --add <name> <branch>..."),
Jonathan Nieder3d8b6942010-05-19 13:38:50 -050053 NULL
54};
55
Tim Henigan45041072009-11-20 18:43:13 -050056static const char * const builtin_remote_show_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070057 N_("git remote show [<options>] <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050058 NULL
59};
60
61static const char * const builtin_remote_prune_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070062 N_("git remote prune [<options>] <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050063 NULL
64};
65
66static const char * const builtin_remote_update_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070067 N_("git remote update [<options>] [<group> | <remote>]..."),
Tim Henigan45041072009-11-20 18:43:13 -050068 NULL
69};
70
Ben Boeckel96f78d32015-09-15 21:53:47 -040071static const char * const builtin_remote_geturl_usage[] = {
72 N_("git remote get-url [--push] [--all] <name>"),
73 NULL
74};
75
Ilari Liusvaara433f2be2010-01-18 19:18:02 +020076static const char * const builtin_remote_seturl_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070077 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
78 N_("git remote set-url --add <name> <newurl>"),
79 N_("git remote set-url --delete <name> <url>"),
Ilari Liusvaara433f2be2010-01-18 19:18:02 +020080 NULL
81};
82
Jay Soffiane61e0cc2009-02-25 03:32:24 -050083#define GET_REF_STATES (1<<0)
84#define GET_HEAD_NAMES (1<<1)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -050085#define GET_PUSH_REF_STATES (1<<2)
Jay Soffiane61e0cc2009-02-25 03:32:24 -050086
Johannes Schindelin211c8962008-02-29 01:45:45 +000087static int verbose;
88
Johannes Schindelin211c8962008-02-29 01:45:45 +000089static int fetch_remote(const char *name)
90{
Cheng Renquandbbd56f2008-11-18 19:04:02 +080091 const char *argv[] = { "fetch", name, NULL, NULL };
92 if (verbose) {
93 argv[1] = "-v";
94 argv[2] = name;
95 }
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +070096 printf_ln(_("Updating %s"), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +000097 if (run_command_v_opt(argv, RUN_GIT_CMD))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +070098 return error(_("Could not fetch %s"), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +000099 return 0;
100}
101
Samuel Tardieu111fb852010-04-20 01:31:31 +0200102enum {
103 TAGS_UNSET = 0,
104 TAGS_DEFAULT = 1,
105 TAGS_SET = 2
106};
107
Jeff Kinga9f5a352011-03-30 15:53:19 -0400108#define MIRROR_NONE 0
109#define MIRROR_FETCH 1
110#define MIRROR_PUSH 2
111#define MIRROR_BOTH (MIRROR_FETCH|MIRROR_PUSH)
112
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +0100113static void add_branch(const char *key, const char *branchname,
114 const char *remotename, int mirror, struct strbuf *tmp)
Jonathan Nieder3d8b6942010-05-19 13:38:50 -0500115{
116 strbuf_reset(tmp);
117 strbuf_addch(tmp, '+');
118 if (mirror)
119 strbuf_addf(tmp, "refs/%s:refs/%s",
120 branchname, branchname);
121 else
122 strbuf_addf(tmp, "refs/heads/%s:refs/remotes/%s/%s",
123 branchname, remotename, branchname);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100124 git_config_set_multivar(key, tmp->buf, "^$", 0);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -0500125}
126
Jeff King09902482011-03-30 15:53:39 -0400127static const char mirror_advice[] =
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700128N_("--mirror is dangerous and deprecated; please\n"
129 "\t use --mirror=fetch or --mirror=push instead");
Jeff King09902482011-03-30 15:53:39 -0400130
Jeff Kinga9f5a352011-03-30 15:53:19 -0400131static int parse_mirror_opt(const struct option *opt, const char *arg, int not)
132{
133 unsigned *mirror = opt->value;
134 if (not)
135 *mirror = MIRROR_NONE;
Jeff King09902482011-03-30 15:53:39 -0400136 else if (!arg) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700137 warning("%s", _(mirror_advice));
Jeff Kinga9f5a352011-03-30 15:53:19 -0400138 *mirror = MIRROR_BOTH;
Jeff King09902482011-03-30 15:53:39 -0400139 }
Jeff Kinga9f5a352011-03-30 15:53:19 -0400140 else if (!strcmp(arg, "fetch"))
141 *mirror = MIRROR_FETCH;
142 else if (!strcmp(arg, "push"))
143 *mirror = MIRROR_PUSH;
144 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700145 return error(_("unknown mirror argument: %s"), arg);
Jeff Kinga9f5a352011-03-30 15:53:19 -0400146 return 0;
147}
148
Johannes Schindelin211c8962008-02-29 01:45:45 +0000149static int add(int argc, const char **argv)
150{
Jeff Kinga9f5a352011-03-30 15:53:19 -0400151 int fetch = 0, fetch_tags = TAGS_DEFAULT;
152 unsigned mirror = MIRROR_NONE;
Thiago Farina183113a2010-07-04 16:46:19 -0300153 struct string_list track = STRING_LIST_INIT_NODUP;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000154 const char *master = NULL;
155 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500156 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000157 const char *name, *url;
158 int i;
159
160 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200161 OPT_BOOL('f', "fetch", &fetch, N_("fetch the remote branches")),
Samuel Tardieu111fb852010-04-20 01:31:31 +0200162 OPT_SET_INT(0, "tags", &fetch_tags,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +0700163 N_("import all tags and associated objects when fetching"),
Samuel Tardieu111fb852010-04-20 01:31:31 +0200164 TAGS_SET),
165 OPT_SET_INT(0, NULL, &fetch_tags,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +0700166 N_("or do not fetch any tag at all (--no-tags)"), TAGS_UNSET),
167 OPT_STRING_LIST('t', "track", &track, N_("branch"),
168 N_("branch(es) to track")),
169 OPT_STRING('m', "master", &master, N_("branch"), N_("master branch")),
170 { OPTION_CALLBACK, 0, "mirror", &mirror, N_("push|fetch"),
171 N_("set up remote as a mirror to push to or fetch from"),
Nguyễn Thái Ngọc Duyebc4a042018-02-09 18:02:12 +0700172 PARSE_OPT_OPTARG | PARSE_OPT_COMP_ARG, parse_mirror_opt },
Johannes Schindelin211c8962008-02-29 01:45:45 +0000173 OPT_END()
174 };
175
Tim Henigan45041072009-11-20 18:43:13 -0500176 argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
Stephen Boyd37782922009-05-23 11:53:12 -0700177 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000178
Thomas Rast2d2e3d22013-04-24 15:54:36 +0200179 if (argc != 2)
Tim Henigan45041072009-11-20 18:43:13 -0500180 usage_with_options(builtin_remote_add_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000181
Jeff King13fc2c12011-03-30 15:52:52 -0400182 if (mirror && master)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700183 die(_("specifying a master branch makes no sense with --mirror"));
Jeff King3eafdc92011-05-26 11:11:00 -0400184 if (mirror && !(mirror & MIRROR_FETCH) && track.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700185 die(_("specifying branches to track makes sense only with fetch mirrors"));
Jeff King13fc2c12011-03-30 15:52:52 -0400186
Johannes Schindelin211c8962008-02-29 01:45:45 +0000187 name = argv[0];
188 url = argv[1];
189
190 remote = remote_get(name);
Johannes Schindeline459b072017-01-19 22:20:02 +0100191 if (remote_is_configured(remote, 1))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700192 die(_("remote %s already exists."), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000193
Jonas Fonseca24b61772008-04-13 11:56:54 +0200194 strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
195 if (!valid_fetch_refspec(buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700196 die(_("'%s' is not a valid remote name"), name);
Jonas Fonseca24b61772008-04-13 11:56:54 +0200197
Johannes Schindelin211c8962008-02-29 01:45:45 +0000198 strbuf_addf(&buf, "remote.%s.url", name);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100199 git_config_set(buf.buf, url);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000200
Jeff Kinga9f5a352011-03-30 15:53:19 -0400201 if (!mirror || mirror & MIRROR_FETCH) {
202 strbuf_reset(&buf);
203 strbuf_addf(&buf, "remote.%s.fetch", name);
204 if (track.nr == 0)
205 string_list_append(&track, "*");
206 for (i = 0; i < track.nr; i++) {
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +0100207 add_branch(buf.buf, track.items[i].string,
208 name, mirror, &buf2);
Jeff Kinga9f5a352011-03-30 15:53:19 -0400209 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000210 }
211
Jeff Kinga9f5a352011-03-30 15:53:19 -0400212 if (mirror & MIRROR_PUSH) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200213 strbuf_reset(&buf);
214 strbuf_addf(&buf, "remote.%s.mirror", name);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100215 git_config_set(buf.buf, "true");
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200216 }
217
Samuel Tardieu111fb852010-04-20 01:31:31 +0200218 if (fetch_tags != TAGS_DEFAULT) {
219 strbuf_reset(&buf);
220 strbuf_addf(&buf, "remote.%s.tagopt", name);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100221 git_config_set(buf.buf,
222 fetch_tags == TAGS_SET ? "--tags" : "--no-tags");
Samuel Tardieu111fb852010-04-20 01:31:31 +0200223 }
224
Johannes Schindelin211c8962008-02-29 01:45:45 +0000225 if (fetch && fetch_remote(name))
226 return 1;
227
228 if (master) {
229 strbuf_reset(&buf);
230 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
231
232 strbuf_reset(&buf2);
233 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
234
235 if (create_symref(buf.buf, buf2.buf, "remote add"))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700236 return error(_("Could not setup master '%s'"), master);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000237 }
238
239 strbuf_release(&buf);
240 strbuf_release(&buf2);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100241 string_list_clear(&track, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000242
243 return 0;
244}
245
246struct branch_info {
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500247 char *remote_name;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100248 struct string_list merge;
Johannes Schindelinb5496d42016-01-13 13:17:19 +0100249 enum { NO_REBASE, NORMAL_REBASE, INTERACTIVE_REBASE } rebase;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000250};
251
Jeff King2721ce22016-06-13 06:04:20 -0400252static struct string_list branch_list = STRING_LIST_INIT_NODUP;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000253
Junio C Hamano72972eb2008-07-17 21:30:33 -0700254static const char *abbrev_ref(const char *name, const char *prefix)
255{
Jeff Kingcf4fff52014-06-18 15:44:19 -0400256 skip_prefix(name, prefix, &name);
Junio C Hamano72972eb2008-07-17 21:30:33 -0700257 return name;
258}
259#define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
260
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100261static int config_read_branches(const char *key, const char *value, void *cb)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000262{
Christian Couder59556542013-11-30 21:55:40 +0100263 if (starts_with(key, "branch.")) {
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500264 const char *orig_key = key;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000265 char *name;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100266 struct string_list_item *item;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000267 struct branch_info *info;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500268 enum { REMOTE, MERGE, REBASE } type;
Jeff King26936bf2014-06-30 12:58:51 -0400269 size_t key_len;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000270
271 key += 7;
Jeff King26936bf2014-06-30 12:58:51 -0400272 if (strip_suffix(key, ".remote", &key_len)) {
273 name = xmemdupz(key, key_len);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000274 type = REMOTE;
Jeff King26936bf2014-06-30 12:58:51 -0400275 } else if (strip_suffix(key, ".merge", &key_len)) {
276 name = xmemdupz(key, key_len);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000277 type = MERGE;
Jeff King26936bf2014-06-30 12:58:51 -0400278 } else if (strip_suffix(key, ".rebase", &key_len)) {
279 name = xmemdupz(key, key_len);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500280 type = REBASE;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000281 } else
282 return 0;
283
Julian Phillips78a395d2010-06-26 00:41:35 +0100284 item = string_list_insert(&branch_list, name);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000285
286 if (!item->util)
Brian Gesiak38069452014-05-27 00:33:44 +0900287 item->util = xcalloc(1, sizeof(struct branch_info));
Johannes Schindelin211c8962008-02-29 01:45:45 +0000288 info = item->util;
289 if (type == REMOTE) {
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500290 if (info->remote_name)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700291 warning(_("more than one %s"), orig_key);
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500292 info->remote_name = xstrdup(value);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500293 } else if (type == MERGE) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000294 char *space = strchr(value, ' ');
Junio C Hamano72972eb2008-07-17 21:30:33 -0700295 value = abbrev_branch(value);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000296 while (space) {
297 char *merge;
298 merge = xstrndup(value, space - value);
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100299 string_list_append(&info->merge, merge);
Junio C Hamano72972eb2008-07-17 21:30:33 -0700300 value = abbrev_branch(space + 1);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000301 space = strchr(value, ' ');
302 }
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100303 string_list_append(&info->merge, xstrdup(value));
Felipe Contreras0a54f702013-12-07 07:08:37 -0600304 } else {
Martin Ågren89576612017-08-07 20:20:49 +0200305 int v = git_parse_maybe_bool(value);
Felipe Contreras0a54f702013-12-07 07:08:37 -0600306 if (v >= 0)
307 info->rebase = v;
308 else if (!strcmp(value, "preserve"))
Johannes Schindelinb5496d42016-01-13 13:17:19 +0100309 info->rebase = NORMAL_REBASE;
310 else if (!strcmp(value, "interactive"))
311 info->rebase = INTERACTIVE_REBASE;
Felipe Contreras0a54f702013-12-07 07:08:37 -0600312 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000313 }
314 return 0;
315}
316
317static void read_branches(void)
318{
319 if (branch_list.nr)
320 return;
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100321 git_config(config_read_branches, NULL);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000322}
323
324struct ref_states {
325 struct remote *remote;
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800326 struct string_list new_refs, stale, tracked, heads, push;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500327 int queried;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000328};
329
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500330static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000331{
332 struct ref *fetch_map = NULL, **tail = &fetch_map;
Jay Soffianf2ef6072009-11-10 00:03:31 -0500333 struct ref *ref, *stale_refs;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000334 int i;
335
336 for (i = 0; i < states->remote->fetch_refspec_nr; i++)
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500337 if (get_fetch_map(remote_refs, states->remote->fetch + i, &tail, 1))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700338 die(_("Could not get fetch map for refspec %s"),
Johannes Schindelin211c8962008-02-29 01:45:45 +0000339 states->remote->fetch_refspec[i]);
340
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800341 states->new_refs.strdup_strings = 1;
Bert Wesarg92f676f2009-12-01 00:57:27 +0100342 states->tracked.strdup_strings = 1;
343 states->stale.strdup_strings = 1;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000344 for (ref = fetch_map; ref; ref = ref->next) {
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +0700345 if (!ref->peer_ref || !ref_exists(ref->peer_ref->name))
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800346 string_list_append(&states->new_refs, abbrev_branch(ref->name));
Jay Soffian7b9a5e22009-02-25 03:32:20 -0500347 else
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100348 string_list_append(&states->tracked, abbrev_branch(ref->name));
Johannes Schindelin211c8962008-02-29 01:45:45 +0000349 }
Carlos Martín Nietoed43de62011-10-15 07:04:25 +0200350 stale_refs = get_stale_heads(states->remote->fetch,
351 states->remote->fetch_refspec_nr, fetch_map);
Jay Soffianf2ef6072009-11-10 00:03:31 -0500352 for (ref = stale_refs; ref; ref = ref->next) {
353 struct string_list_item *item =
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100354 string_list_append(&states->stale, abbrev_branch(ref->name));
Jay Soffianf2ef6072009-11-10 00:03:31 -0500355 item->util = xstrdup(ref->name);
356 }
357 free_refs(stale_refs);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000358 free_refs(fetch_map);
359
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800360 string_list_sort(&states->new_refs);
Michael Haggerty3383e192014-11-25 09:02:35 +0100361 string_list_sort(&states->tracked);
362 string_list_sort(&states->stale);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000363
364 return 0;
365}
366
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500367struct push_info {
368 char *dest;
369 int forced;
370 enum {
371 PUSH_STATUS_CREATE = 0,
372 PUSH_STATUS_DELETE,
373 PUSH_STATUS_UPTODATE,
374 PUSH_STATUS_FASTFORWARD,
375 PUSH_STATUS_OUTOFDATE,
Gary V. Vaughan4b055482010-05-14 09:31:35 +0000376 PUSH_STATUS_NOTQUERIED
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500377 } status;
378};
379
380static int get_push_ref_states(const struct ref *remote_refs,
381 struct ref_states *states)
382{
383 struct remote *remote = states->remote;
Clemens Buchacher6d2bf962009-05-31 16:26:48 +0200384 struct ref *ref, *local_refs, *push_map;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500385 if (remote->mirror)
386 return 0;
387
388 local_refs = get_local_heads();
Clemens Buchacher6a015542009-05-27 22:13:43 +0200389 push_map = copy_ref_list(remote_refs);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500390
Junio C Hamano29753cd2011-09-09 11:54:58 -0700391 match_push_refs(local_refs, &push_map, remote->push_refspec_nr,
392 remote->push_refspec, MATCH_REFS_NONE);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500393
394 states->push.strdup_strings = 1;
395 for (ref = push_map; ref; ref = ref->next) {
396 struct string_list_item *item;
397 struct push_info *info;
398
399 if (!ref->peer_ref)
400 continue;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000401 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500402
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100403 item = string_list_append(&states->push,
404 abbrev_branch(ref->peer_ref->name));
Brian Gesiak38069452014-05-27 00:33:44 +0900405 item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500406 info = item->util;
407 info->forced = ref->force;
408 info->dest = xstrdup(abbrev_branch(ref->name));
409
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000410 if (is_null_oid(&ref->new_oid)) {
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500411 info->status = PUSH_STATUS_DELETE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000412 } else if (!oidcmp(&ref->old_oid, &ref->new_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500413 info->status = PUSH_STATUS_UPTODATE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000414 else if (is_null_oid(&ref->old_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500415 info->status = PUSH_STATUS_CREATE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000416 else if (has_object_file(&ref->old_oid) &&
brian m. carlson6f3d57b2015-11-10 02:22:25 +0000417 ref_newer(&ref->new_oid, &ref->old_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500418 info->status = PUSH_STATUS_FASTFORWARD;
419 else
420 info->status = PUSH_STATUS_OUTOFDATE;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500421 }
422 free_refs(local_refs);
423 free_refs(push_map);
424 return 0;
425}
426
427static int get_push_ref_states_noquery(struct ref_states *states)
428{
429 int i;
430 struct remote *remote = states->remote;
431 struct string_list_item *item;
432 struct push_info *info;
433
434 if (remote->mirror)
435 return 0;
436
437 states->push.strdup_strings = 1;
438 if (!remote->push_refspec_nr) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700439 item = string_list_append(&states->push, _("(matching)"));
Brian Gesiak38069452014-05-27 00:33:44 +0900440 info = item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500441 info->status = PUSH_STATUS_NOTQUERIED;
442 info->dest = xstrdup(item->string);
443 }
444 for (i = 0; i < remote->push_refspec_nr; i++) {
445 struct refspec *spec = remote->push + i;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500446 if (spec->matching)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700447 item = string_list_append(&states->push, _("(matching)"));
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800448 else if (strlen(spec->src))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100449 item = string_list_append(&states->push, spec->src);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500450 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700451 item = string_list_append(&states->push, _("(delete)"));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500452
Brian Gesiak38069452014-05-27 00:33:44 +0900453 info = item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500454 info->forced = spec->force;
455 info->status = PUSH_STATUS_NOTQUERIED;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800456 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500457 }
458 return 0;
459}
460
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500461static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
462{
463 struct ref *ref, *matches;
464 struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
465 struct refspec refspec;
466
467 refspec.force = 0;
468 refspec.pattern = 1;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800469 refspec.src = refspec.dst = "refs/heads/*";
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500470 states->heads.strdup_strings = 1;
471 get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
472 matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
473 fetch_map, 1);
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -0400474 for (ref = matches; ref; ref = ref->next)
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100475 string_list_append(&states->heads, abbrev_branch(ref->name));
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500476
477 free_refs(fetch_map);
478 free_refs(matches);
479
480 return 0;
481}
482
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400483struct known_remote {
484 struct known_remote *next;
485 struct remote *remote;
486};
487
488struct known_remotes {
489 struct remote *to_delete;
490 struct known_remote *list;
491};
492
493static int add_known_remote(struct remote *remote, void *cb_data)
494{
495 struct known_remotes *all = cb_data;
496 struct known_remote *r;
497
498 if (!strcmp(all->to_delete->name, remote->name))
499 return 0;
500
501 r = xmalloc(sizeof(*r));
502 r->remote = remote;
503 r->next = all->list;
504 all->list = r;
505 return 0;
506}
507
Johannes Schindelin211c8962008-02-29 01:45:45 +0000508struct branches_for_remote {
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400509 struct remote *remote;
Jay Soffian441adf02009-02-04 11:06:07 -0500510 struct string_list *branches, *skipped;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400511 struct known_remotes *keep;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000512};
513
514static int add_branch_for_removal(const char *refname,
Michael Haggerty45690a52015-05-25 18:38:41 +0000515 const struct object_id *oid, int flags, void *cb_data)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000516{
517 struct branches_for_remote *branches = cb_data;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400518 struct refspec refspec;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400519 struct known_remote *kr;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000520
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400521 memset(&refspec, 0, sizeof(refspec));
522 refspec.dst = (char *)refname;
523 if (remote_find_tracking(branches->remote, &refspec))
524 return 0;
Johannes Schindelin3b9dcff2008-03-08 23:40:42 +0100525
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400526 /* don't delete a branch if another remote also uses it */
527 for (kr = branches->keep->list; kr; kr = kr->next) {
528 memset(&refspec, 0, sizeof(refspec));
529 refspec.dst = (char *)refname;
530 if (!remote_find_tracking(kr->remote, &refspec))
531 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000532 }
533
Matthieu Moy13931232010-11-02 16:31:25 +0100534 /* don't delete non-remote-tracking refs */
Christian Couder59556542013-11-30 21:55:40 +0100535 if (!starts_with(refname, "refs/remotes/")) {
Jay Soffian441adf02009-02-04 11:06:07 -0500536 /* advise user how to delete local branches */
Christian Couder59556542013-11-30 21:55:40 +0100537 if (starts_with(refname, "refs/heads/"))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100538 string_list_append(branches->skipped,
539 abbrev_branch(refname));
Jay Soffian441adf02009-02-04 11:06:07 -0500540 /* silently skip over other non-remote refs */
541 return 0;
542 }
543
Michael Haggertye26cdf92015-05-25 18:38:42 +0000544 string_list_append(branches->branches, refname);
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400545
Johannes Schindelin211c8962008-02-29 01:45:45 +0000546 return 0;
547}
548
Miklos Vajnabf984212008-11-03 19:26:18 +0100549struct rename_info {
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800550 const char *old_name;
551 const char *new_name;
Miklos Vajnabf984212008-11-03 19:26:18 +0100552 struct string_list *remote_branches;
553};
554
555static int read_remote_branches(const char *refname,
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000556 const struct object_id *oid, int flags, void *cb_data)
Miklos Vajnabf984212008-11-03 19:26:18 +0100557{
558 struct rename_info *rename = cb_data;
559 struct strbuf buf = STRBUF_INIT;
560 struct string_list_item *item;
561 int flag;
Miklos Vajnabf984212008-11-03 19:26:18 +0100562 const char *symref;
563
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800564 strbuf_addf(&buf, "refs/remotes/%s/", rename->old_name);
Christian Couder59556542013-11-30 21:55:40 +0100565 if (starts_with(refname, buf.buf)) {
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100566 item = string_list_append(rename->remote_branches, xstrdup(refname));
Ronnie Sahlberg7695d112014-07-15 12:59:36 -0700567 symref = resolve_ref_unsafe(refname, RESOLVE_REF_READING,
René Scharfe744c0402017-09-23 11:45:04 +0200568 NULL, &flag);
Jeff King752848d2017-10-19 13:47:30 -0400569 if (symref && (flag & REF_ISSYMREF))
Miklos Vajnabf984212008-11-03 19:26:18 +0100570 item->util = xstrdup(symref);
571 else
572 item->util = NULL;
573 }
Rene Scharfee2581b72017-08-30 20:00:25 +0200574 strbuf_release(&buf);
Miklos Vajnabf984212008-11-03 19:26:18 +0100575
576 return 0;
577}
578
Miklos Vajna1dd12392008-11-10 21:43:01 +0100579static int migrate_file(struct remote *remote)
580{
581 struct strbuf buf = STRBUF_INIT;
582 int i;
Miklos Vajna1dd12392008-11-10 21:43:01 +0100583
584 strbuf_addf(&buf, "remote.%s.url", remote->name);
585 for (i = 0; i < remote->url_nr; i++)
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100586 git_config_set_multivar(buf.buf, remote->url[i], "^$", 0);
Miklos Vajna1dd12392008-11-10 21:43:01 +0100587 strbuf_reset(&buf);
588 strbuf_addf(&buf, "remote.%s.push", remote->name);
589 for (i = 0; i < remote->push_refspec_nr; i++)
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100590 git_config_set_multivar(buf.buf, remote->push_refspec[i], "^$", 0);
Miklos Vajna1dd12392008-11-10 21:43:01 +0100591 strbuf_reset(&buf);
592 strbuf_addf(&buf, "remote.%s.fetch", remote->name);
593 for (i = 0; i < remote->fetch_refspec_nr; i++)
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100594 git_config_set_multivar(buf.buf, remote->fetch_refspec[i], "^$", 0);
Miklos Vajna1dd12392008-11-10 21:43:01 +0100595 if (remote->origin == REMOTE_REMOTES)
Jeff Kingb21a5d62015-08-10 05:35:49 -0400596 unlink_or_warn(git_path("remotes/%s", remote->name));
Miklos Vajna1dd12392008-11-10 21:43:01 +0100597 else if (remote->origin == REMOTE_BRANCHES)
Jeff Kingb21a5d62015-08-10 05:35:49 -0400598 unlink_or_warn(git_path("branches/%s", remote->name));
Rene Scharfeb95c8ce2017-08-30 20:00:26 +0200599 strbuf_release(&buf);
Patrick Steinhardtc397deb2016-02-22 12:23:30 +0100600
Miklos Vajna1dd12392008-11-10 21:43:01 +0100601 return 0;
602}
603
Miklos Vajnabf984212008-11-03 19:26:18 +0100604static int mv(int argc, const char **argv)
605{
606 struct option options[] = {
607 OPT_END()
608 };
609 struct remote *oldremote, *newremote;
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400610 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT,
611 old_remote_context = STRBUF_INIT;
Thiago Farina183113a2010-07-04 16:46:19 -0300612 struct string_list remote_branches = STRING_LIST_INIT_NODUP;
Miklos Vajnabf984212008-11-03 19:26:18 +0100613 struct rename_info rename;
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400614 int i, refspec_updated = 0;
Miklos Vajnabf984212008-11-03 19:26:18 +0100615
616 if (argc != 3)
Tim Henigan45041072009-11-20 18:43:13 -0500617 usage_with_options(builtin_remote_rename_usage, options);
Miklos Vajnabf984212008-11-03 19:26:18 +0100618
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800619 rename.old_name = argv[1];
620 rename.new_name = argv[2];
Miklos Vajnabf984212008-11-03 19:26:18 +0100621 rename.remote_branches = &remote_branches;
622
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800623 oldremote = remote_get(rename.old_name);
Johannes Schindeline459b072017-01-19 22:20:02 +0100624 if (!remote_is_configured(oldremote, 1))
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800625 die(_("No such remote: %s"), rename.old_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100626
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800627 if (!strcmp(rename.old_name, rename.new_name) && oldremote->origin != REMOTE_CONFIG)
Miklos Vajna1dd12392008-11-10 21:43:01 +0100628 return migrate_file(oldremote);
629
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800630 newremote = remote_get(rename.new_name);
Johannes Schindeline459b072017-01-19 22:20:02 +0100631 if (remote_is_configured(newremote, 1))
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800632 die(_("remote %s already exists."), rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100633
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800634 strbuf_addf(&buf, "refs/heads/test:refs/remotes/%s/test", rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100635 if (!valid_fetch_refspec(buf.buf))
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800636 die(_("'%s' is not a valid remote name"), rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100637
638 strbuf_reset(&buf);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800639 strbuf_addf(&buf, "remote.%s", rename.old_name);
640 strbuf_addf(&buf2, "remote.%s", rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100641 if (git_config_rename_section(buf.buf, buf2.buf) < 1)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700642 return error(_("Could not rename config section '%s' to '%s'"),
Miklos Vajnabf984212008-11-03 19:26:18 +0100643 buf.buf, buf2.buf);
644
645 strbuf_reset(&buf);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800646 strbuf_addf(&buf, "remote.%s.fetch", rename.new_name);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100647 git_config_set_multivar(buf.buf, NULL, NULL, 1);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800648 strbuf_addf(&old_remote_context, ":refs/remotes/%s/", rename.old_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100649 for (i = 0; i < oldremote->fetch_refspec_nr; i++) {
650 char *ptr;
651
652 strbuf_reset(&buf2);
653 strbuf_addstr(&buf2, oldremote->fetch_refspec[i]);
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400654 ptr = strstr(buf2.buf, old_remote_context.buf);
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400655 if (ptr) {
656 refspec_updated = 1;
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400657 strbuf_splice(&buf2,
658 ptr-buf2.buf + strlen(":refs/remotes/"),
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800659 strlen(rename.old_name), rename.new_name,
660 strlen(rename.new_name));
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400661 } else
Ralf Thielowaa3bb872012-05-18 18:46:01 +0200662 warning(_("Not updating non-default fetch refspec\n"
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700663 "\t%s\n"
664 "\tPlease update the configuration manually if necessary."),
Martin von Zweigbergk1822b862011-09-03 11:26:59 -0400665 buf2.buf);
666
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100667 git_config_set_multivar(buf.buf, buf2.buf, "^$", 0);
Miklos Vajnabf984212008-11-03 19:26:18 +0100668 }
669
670 read_branches();
671 for (i = 0; i < branch_list.nr; i++) {
672 struct string_list_item *item = branch_list.items + i;
673 struct branch_info *info = item->util;
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800674 if (info->remote_name && !strcmp(info->remote_name, rename.old_name)) {
Miklos Vajnabf984212008-11-03 19:26:18 +0100675 strbuf_reset(&buf);
676 strbuf_addf(&buf, "branch.%s.remote", item->string);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800677 git_config_set(buf.buf, rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100678 }
679 }
680
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400681 if (!refspec_updated)
682 return 0;
683
Miklos Vajnabf984212008-11-03 19:26:18 +0100684 /*
685 * First remove symrefs, then rename the rest, finally create
686 * the new symrefs.
687 */
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000688 for_each_ref(read_remote_branches, &rename);
Miklos Vajnabf984212008-11-03 19:26:18 +0100689 for (i = 0; i < remote_branches.nr; i++) {
690 struct string_list_item *item = remote_branches.items + i;
691 int flag = 0;
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000692 struct object_id oid;
Miklos Vajnabf984212008-11-03 19:26:18 +0100693
brian m. carlson34c290a2017-10-15 22:06:56 +0000694 read_ref_full(item->string, RESOLVE_REF_READING, &oid, &flag);
Miklos Vajnabf984212008-11-03 19:26:18 +0100695 if (!(flag & REF_ISSYMREF))
696 continue;
Michael Haggerty91774af2017-11-05 09:42:06 +0100697 if (delete_ref(NULL, item->string, NULL, REF_NO_DEREF))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700698 die(_("deleting '%s' failed"), item->string);
Miklos Vajnabf984212008-11-03 19:26:18 +0100699 }
700 for (i = 0; i < remote_branches.nr; i++) {
701 struct string_list_item *item = remote_branches.items + i;
702
703 if (item->util)
704 continue;
705 strbuf_reset(&buf);
706 strbuf_addstr(&buf, item->string);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800707 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old_name),
708 rename.new_name, strlen(rename.new_name));
Miklos Vajnabf984212008-11-03 19:26:18 +0100709 strbuf_reset(&buf2);
710 strbuf_addf(&buf2, "remote: renamed %s to %s",
711 item->string, buf.buf);
712 if (rename_ref(item->string, buf.buf, buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700713 die(_("renaming '%s' failed"), item->string);
Miklos Vajnabf984212008-11-03 19:26:18 +0100714 }
715 for (i = 0; i < remote_branches.nr; i++) {
716 struct string_list_item *item = remote_branches.items + i;
717
718 if (!item->util)
719 continue;
720 strbuf_reset(&buf);
721 strbuf_addstr(&buf, item->string);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800722 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old_name),
723 rename.new_name, strlen(rename.new_name));
Miklos Vajnabf984212008-11-03 19:26:18 +0100724 strbuf_reset(&buf2);
725 strbuf_addstr(&buf2, item->util);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800726 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old_name),
727 rename.new_name, strlen(rename.new_name));
Miklos Vajnabf984212008-11-03 19:26:18 +0100728 strbuf_reset(&buf3);
729 strbuf_addf(&buf3, "remote: renamed %s to %s",
730 item->string, buf.buf);
731 if (create_symref(buf.buf, buf2.buf, buf3.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700732 die(_("creating '%s' failed"), buf.buf);
Miklos Vajnabf984212008-11-03 19:26:18 +0100733 }
734 return 0;
735}
736
Johannes Schindelin211c8962008-02-29 01:45:45 +0000737static int rm(int argc, const char **argv)
738{
739 struct option options[] = {
740 OPT_END()
741 };
742 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500743 struct strbuf buf = STRBUF_INIT;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400744 struct known_remotes known_remotes = { NULL, NULL };
Thiago Farina183113a2010-07-04 16:46:19 -0300745 struct string_list branches = STRING_LIST_INIT_DUP;
746 struct string_list skipped = STRING_LIST_INIT_DUP;
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000747 struct branches_for_remote cb_data;
Jay Soffiane02f1762009-02-03 12:51:12 -0500748 int i, result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000749
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000750 memset(&cb_data, 0, sizeof(cb_data));
751 cb_data.branches = &branches;
752 cb_data.skipped = &skipped;
753 cb_data.keep = &known_remotes;
754
Johannes Schindelin211c8962008-02-29 01:45:45 +0000755 if (argc != 2)
Tim Henigan45041072009-11-20 18:43:13 -0500756 usage_with_options(builtin_remote_rm_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000757
758 remote = remote_get(argv[1]);
Johannes Schindeline459b072017-01-19 22:20:02 +0100759 if (!remote_is_configured(remote, 1))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700760 die(_("No such remote: %s"), argv[1]);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000761
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400762 known_remotes.to_delete = remote;
763 for_each_remote(add_known_remote, &known_remotes);
764
Johannes Schindelin211c8962008-02-29 01:45:45 +0000765 read_branches();
766 for (i = 0; i < branch_list.nr; i++) {
Johannes Schindelinc455c872008-07-21 19:03:49 +0100767 struct string_list_item *item = branch_list.items + i;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000768 struct branch_info *info = item->util;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500769 if (info->remote_name && !strcmp(info->remote_name, remote->name)) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000770 const char *keys[] = { "remote", "merge", NULL }, **k;
771 for (k = keys; *k; k++) {
772 strbuf_reset(&buf);
773 strbuf_addf(&buf, "branch.%s.%s",
Johannes Schindelinc455c872008-07-21 19:03:49 +0100774 item->string, *k);
Ross Lagerwall20690b22017-02-18 00:23:41 +0000775 result = git_config_set_gently(buf.buf, NULL);
776 if (result && result != CONFIG_NOTHING_SET)
777 die(_("could not unset '%s'"), buf.buf);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000778 }
779 }
780 }
781
782 /*
783 * We cannot just pass a function to for_each_ref() which deletes
784 * the branches one by one, since for_each_ref() relies on cached
785 * refs, which are invalidated when deleting a branch.
786 */
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400787 cb_data.remote = remote;
Michael Haggerty45690a52015-05-25 18:38:41 +0000788 result = for_each_ref(add_branch_for_removal, &cb_data);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000789 strbuf_release(&buf);
790
Jay Soffiane02f1762009-02-03 12:51:12 -0500791 if (!result)
Michael Haggerty91774af2017-11-05 09:42:06 +0100792 result = delete_refs("remote: remove", &branches, REF_NO_DEREF);
Michael Haggertye26cdf92015-05-25 18:38:42 +0000793 string_list_clear(&branches, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000794
Jay Soffian441adf02009-02-04 11:06:07 -0500795 if (skipped.nr) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700796 fprintf_ln(stderr,
797 Q_("Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"
798 "to delete it, use:",
799 "Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"
800 "to delete them, use:",
801 skipped.nr));
Jay Soffian441adf02009-02-04 11:06:07 -0500802 for (i = 0; i < skipped.nr; i++)
803 fprintf(stderr, " git branch -d %s\n",
804 skipped.items[i].string);
805 }
806 string_list_clear(&skipped, 0);
807
Jens Lindströmb07bdd32014-05-23 12:28:43 +0200808 if (!result) {
809 strbuf_addf(&buf, "remote.%s", remote->name);
810 if (git_config_rename_section(buf.buf, NULL) < 1)
811 return error(_("Could not remove config section '%s'"), buf.buf);
812 }
813
Jay Soffiane02f1762009-02-03 12:51:12 -0500814 return result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000815}
816
Linus Torvalds2af202b2009-06-18 10:28:43 -0700817static void clear_push_info(void *util, const char *string)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000818{
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500819 struct push_info *info = util;
820 free(info->dest);
821 free(info);
822}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000823
Jay Soffian88733232009-02-25 03:32:19 -0500824static void free_remote_ref_states(struct ref_states *states)
825{
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800826 string_list_clear(&states->new_refs, 0);
Bert Wesarg92f676f2009-12-01 00:57:27 +0100827 string_list_clear(&states->stale, 1);
Jay Soffian88733232009-02-25 03:32:19 -0500828 string_list_clear(&states->tracked, 0);
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500829 string_list_clear(&states->heads, 0);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500830 string_list_clear_func(&states->push, clear_push_info);
Jay Soffian88733232009-02-25 03:32:19 -0500831}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000832
Jay Soffiancca7c972009-02-25 03:32:22 -0500833static int append_ref_to_tracked_list(const char *refname,
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000834 const struct object_id *oid, int flags, void *cb_data)
Jay Soffiancca7c972009-02-25 03:32:22 -0500835{
836 struct ref_states *states = cb_data;
837 struct refspec refspec;
838
Jay Soffian3bd92562009-02-25 03:32:23 -0500839 if (flags & REF_ISSYMREF)
840 return 0;
841
Jay Soffiancca7c972009-02-25 03:32:22 -0500842 memset(&refspec, 0, sizeof(refspec));
843 refspec.dst = (char *)refname;
844 if (!remote_find_tracking(states->remote, &refspec))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100845 string_list_append(&states->tracked, abbrev_branch(refspec.src));
Jay Soffiancca7c972009-02-25 03:32:22 -0500846
847 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000848}
849
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200850static int get_remote_ref_states(const char *name,
851 struct ref_states *states,
852 int query)
853{
854 struct transport *transport;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500855 const struct ref *remote_refs;
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200856
857 states->remote = remote_get(name);
858 if (!states->remote)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700859 return error(_("No such remote: %s"), name);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200860
861 read_branches();
862
863 if (query) {
Chris Frey345a3802009-06-25 17:21:35 -0400864 transport = transport_get(states->remote, states->remote->url_nr > 0 ?
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200865 states->remote->url[0] : NULL);
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500866 remote_refs = transport_get_remote_refs(transport);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200867 transport_disconnect(transport);
868
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500869 states->queried = 1;
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500870 if (query & GET_REF_STATES)
871 get_ref_states(remote_refs, states);
872 if (query & GET_HEAD_NAMES)
873 get_head_names(remote_refs, states);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500874 if (query & GET_PUSH_REF_STATES)
875 get_push_ref_states(remote_refs, states);
Jay Soffian3bd92562009-02-25 03:32:23 -0500876 } else {
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000877 for_each_ref(append_ref_to_tracked_list, states);
Michael Haggerty3383e192014-11-25 09:02:35 +0100878 string_list_sort(&states->tracked);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500879 get_push_ref_states_noquery(states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200880 }
881
882 return 0;
883}
884
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500885struct show_info {
886 struct string_list *list;
887 struct ref_states *states;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500888 int width, width2;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500889 int any_rebase;
890};
891
Linus Torvalds2af202b2009-06-18 10:28:43 -0700892static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
Olivier Marine7d5a972008-06-11 00:54:49 +0200893{
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500894 struct show_info *info = cb_data;
895 int n = strlen(item->string);
896 if (n > info->width)
897 info->width = n;
Julian Phillips78a395d2010-06-26 00:41:35 +0100898 string_list_insert(info->list, item->string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500899 return 0;
900}
Olivier Marine7d5a972008-06-11 00:54:49 +0200901
Linus Torvalds2af202b2009-06-18 10:28:43 -0700902static int show_remote_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500903{
904 struct show_info *info = cb_data;
905 struct ref_states *states = info->states;
906 const char *name = item->string;
Olivier Marine7d5a972008-06-11 00:54:49 +0200907
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500908 if (states->queried) {
909 const char *fmt = "%s";
910 const char *arg = "";
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800911 if (string_list_has_string(&states->new_refs, name)) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700912 fmt = _(" new (next fetch will store in remotes/%s)");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500913 arg = states->remote->name;
914 } else if (string_list_has_string(&states->tracked, name))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700915 arg = _(" tracked");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500916 else if (string_list_has_string(&states->stale, name))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700917 arg = _(" stale (use 'git remote prune' to remove)");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500918 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700919 arg = _(" ???");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500920 printf(" %-*s", info->width, name);
921 printf(fmt, arg);
922 printf("\n");
923 } else
924 printf(" %s\n", name);
925
926 return 0;
927}
928
Linus Torvalds2af202b2009-06-18 10:28:43 -0700929static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500930{
931 struct show_info *show_info = cb_data;
932 struct ref_states *states = show_info->states;
933 struct branch_info *branch_info = branch_item->util;
934 struct string_list_item *item;
935 int n;
936
937 if (!branch_info->merge.nr || !branch_info->remote_name ||
938 strcmp(states->remote->name, branch_info->remote_name))
939 return 0;
940 if ((n = strlen(branch_item->string)) > show_info->width)
941 show_info->width = n;
942 if (branch_info->rebase)
943 show_info->any_rebase = 1;
944
Julian Phillips78a395d2010-06-26 00:41:35 +0100945 item = string_list_insert(show_info->list, branch_item->string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500946 item->util = branch_info;
947
948 return 0;
949}
950
Linus Torvalds2af202b2009-06-18 10:28:43 -0700951static int show_local_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500952{
953 struct show_info *show_info = cb_data;
954 struct branch_info *branch_info = item->util;
955 struct string_list *merge = &branch_info->merge;
Vasco Almeidaa1b467a2016-06-17 20:21:22 +0000956 int width = show_info->width + 4;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500957 int i;
958
959 if (branch_info->rebase && branch_info->merge.nr > 1) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700960 error(_("invalid branch.%s.merge; cannot rebase onto > 1 branch"),
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500961 item->string);
962 return 0;
963 }
964
965 printf(" %-*s ", show_info->width, item->string);
966 if (branch_info->rebase) {
Vasco Almeida070b7e42016-06-17 20:20:50 +0000967 printf_ln(branch_info->rebase == INTERACTIVE_REBASE
968 ? _("rebases interactively onto remote %s")
969 : _("rebases onto remote %s"), merge->items[0].string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500970 return 0;
971 } else if (show_info->any_rebase) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700972 printf_ln(_(" merges with remote %s"), merge->items[0].string);
Vasco Almeidaa1b467a2016-06-17 20:21:22 +0000973 width++;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500974 } else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700975 printf_ln(_("merges with remote %s"), merge->items[0].string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500976 }
977 for (i = 1; i < merge->nr; i++)
Vasco Almeidaa1b467a2016-06-17 20:21:22 +0000978 printf(_("%-*s and with remote %s\n"), width, "",
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500979 merge->items[i].string);
980
981 return 0;
982}
983
Linus Torvalds2af202b2009-06-18 10:28:43 -0700984static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500985{
986 struct show_info *show_info = cb_data;
987 struct push_info *push_info = push_item->util;
988 struct string_list_item *item;
989 int n;
990 if ((n = strlen(push_item->string)) > show_info->width)
991 show_info->width = n;
992 if ((n = strlen(push_info->dest)) > show_info->width2)
993 show_info->width2 = n;
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100994 item = string_list_append(show_info->list, push_item->string);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500995 item->util = push_item->util;
996 return 0;
997}
998
Jeff King48ef5632009-03-22 04:59:20 -0400999/*
1000 * Sorting comparison for a string list that has push_info
1001 * structs in its util field
1002 */
1003static int cmp_string_with_push(const void *va, const void *vb)
1004{
1005 const struct string_list_item *a = va;
1006 const struct string_list_item *b = vb;
1007 const struct push_info *a_push = a->util;
1008 const struct push_info *b_push = b->util;
1009 int cmp = strcmp(a->string, b->string);
1010 return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
1011}
1012
Linus Torvalds2af202b2009-06-18 10:28:43 -07001013static int show_push_info_item(struct string_list_item *item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001014{
1015 struct show_info *show_info = cb_data;
1016 struct push_info *push_info = item->util;
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001017 const char *src = item->string, *status = NULL;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001018
1019 switch (push_info->status) {
1020 case PUSH_STATUS_CREATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001021 status = _("create");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001022 break;
1023 case PUSH_STATUS_DELETE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001024 status = _("delete");
1025 src = _("(none)");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001026 break;
1027 case PUSH_STATUS_UPTODATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001028 status = _("up to date");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001029 break;
1030 case PUSH_STATUS_FASTFORWARD:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001031 status = _("fast-forwardable");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001032 break;
1033 case PUSH_STATUS_OUTOFDATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001034 status = _("local out of date");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001035 break;
1036 case PUSH_STATUS_NOTQUERIED:
1037 break;
1038 }
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001039 if (status) {
1040 if (push_info->forced)
1041 printf_ln(_(" %-*s forces to %-*s (%s)"), show_info->width, src,
1042 show_info->width2, push_info->dest, status);
1043 else
1044 printf_ln(_(" %-*s pushes to %-*s (%s)"), show_info->width, src,
1045 show_info->width2, push_info->dest, status);
1046 } else {
1047 if (push_info->forced)
1048 printf_ln(_(" %-*s forces to %s"), show_info->width, src,
1049 push_info->dest);
1050 else
1051 printf_ln(_(" %-*s pushes to %s"), show_info->width, src,
1052 push_info->dest);
1053 }
Olivier Marine7d5a972008-06-11 00:54:49 +02001054 return 0;
1055}
1056
Michael Haggertyce2223f2013-10-30 06:33:02 +01001057static int get_one_entry(struct remote *remote, void *priv)
1058{
1059 struct string_list *list = priv;
1060 struct strbuf url_buf = STRBUF_INIT;
1061 const char **url;
1062 int i, url_nr;
1063
1064 if (remote->url_nr > 0) {
1065 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1066 string_list_append(list, remote->name)->util =
1067 strbuf_detach(&url_buf, NULL);
1068 } else
1069 string_list_append(list, remote->name)->util = NULL;
1070 if (remote->pushurl_nr) {
1071 url = remote->pushurl;
1072 url_nr = remote->pushurl_nr;
1073 } else {
1074 url = remote->url;
1075 url_nr = remote->url_nr;
1076 }
1077 for (i = 0; i < url_nr; i++)
1078 {
1079 strbuf_addf(&url_buf, "%s (push)", url[i]);
1080 string_list_append(list, remote->name)->util =
1081 strbuf_detach(&url_buf, NULL);
1082 }
1083
1084 return 0;
1085}
1086
1087static int show_all(void)
1088{
1089 struct string_list list = STRING_LIST_INIT_NODUP;
1090 int result;
1091
1092 list.strdup_strings = 1;
1093 result = for_each_remote(get_one_entry, &list);
1094
1095 if (!result) {
1096 int i;
1097
Michael Haggerty3383e192014-11-25 09:02:35 +01001098 string_list_sort(&list);
Michael Haggertyce2223f2013-10-30 06:33:02 +01001099 for (i = 0; i < list.nr; i++) {
1100 struct string_list_item *item = list.items + i;
1101 if (verbose)
1102 printf("%s\t%s\n", item->string,
1103 item->util ? (const char *)item->util : "");
1104 else {
1105 if (i && !strcmp((item - 1)->string, item->string))
1106 continue;
1107 printf("%s\n", item->string);
1108 }
1109 }
1110 }
1111 string_list_clear(&list, 1);
1112 return result;
1113}
1114
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001115static int show(int argc, const char **argv)
Johannes Schindelin211c8962008-02-29 01:45:45 +00001116{
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001117 int no_query = 0, result = 0, query_flag = 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001118 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001119 OPT_BOOL('n', NULL, &no_query, N_("do not query remotes")),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001120 OPT_END()
1121 };
1122 struct ref_states states;
Thiago Farina183113a2010-07-04 16:46:19 -03001123 struct string_list info_list = STRING_LIST_INIT_NODUP;
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001124 struct show_info info;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001125
Tim Henigan45041072009-11-20 18:43:13 -05001126 argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001127 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001128
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001129 if (argc < 1)
1130 return show_all();
Johannes Schindelin211c8962008-02-29 01:45:45 +00001131
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001132 if (!no_query)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001133 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001134
Johannes Schindelin211c8962008-02-29 01:45:45 +00001135 memset(&states, 0, sizeof(states));
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001136 memset(&info, 0, sizeof(info));
1137 info.states = &states;
1138 info.list = &info_list;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001139 for (; argc; argc--, argv++) {
Olivier Marin0ecfcb32008-06-10 16:51:08 +02001140 int i;
Michael J Gruber857f8c32009-06-13 18:29:10 +02001141 const char **url;
1142 int url_nr;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001143
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001144 get_remote_ref_states(*argv, &states, query_flag);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001145
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001146 printf_ln(_("* remote %s"), *argv);
1147 printf_ln(_(" Fetch URL: %s"), states.remote->url_nr > 0 ?
1148 states.remote->url[0] : _("(no URL)"));
Michael J Gruber857f8c32009-06-13 18:29:10 +02001149 if (states.remote->pushurl_nr) {
1150 url = states.remote->pushurl;
1151 url_nr = states.remote->pushurl_nr;
1152 } else {
1153 url = states.remote->url;
1154 url_nr = states.remote->url_nr;
1155 }
Junio C Hamanocd2b8ae2011-08-25 14:46:52 -07001156 for (i = 0; i < url_nr; i++)
Ævar Arnfjörð Bjarmason66f5f6d2017-05-11 21:20:12 +00001157 /*
1158 * TRANSLATORS: the colon ':' should align
1159 * with the one in " Fetch URL: %s"
1160 * translation.
1161 */
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001162 printf_ln(_(" Push URL: %s"), url[i]);
Michael J Gruber857f8c32009-06-13 18:29:10 +02001163 if (!i)
Vasco Almeida7ba7b9a2016-06-17 20:21:21 +00001164 printf_ln(_(" Push URL: %s"), _("(no URL)"));
Olivier Marine7d5a972008-06-11 00:54:49 +02001165 if (no_query)
Vasco Almeida7ba7b9a2016-06-17 20:21:21 +00001166 printf_ln(_(" HEAD branch: %s"), _("(not queried)"));
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001167 else if (!states.heads.nr)
Vasco Almeida7ba7b9a2016-06-17 20:21:21 +00001168 printf_ln(_(" HEAD branch: %s"), _("(unknown)"));
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001169 else if (states.heads.nr == 1)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001170 printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001171 else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001172 printf(_(" HEAD branch (remote HEAD is ambiguous,"
1173 " may be one of the following):\n"));
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001174 for (i = 0; i < states.heads.nr; i++)
1175 printf(" %s\n", states.heads.items[i].string);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001176 }
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001177
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001178 /* remote branch info */
1179 info.width = 0;
Brandon Williamsb537e0b2018-02-14 10:59:35 -08001180 for_each_string_list(&states.new_refs, add_remote_to_show_info, &info);
Julian Phillipsb684e972010-06-26 00:41:34 +01001181 for_each_string_list(&states.tracked, add_remote_to_show_info, &info);
1182 for_each_string_list(&states.stale, add_remote_to_show_info, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001183 if (info.list->nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001184 printf_ln(Q_(" Remote branch:%s",
1185 " Remote branches:%s",
1186 info.list->nr),
1187 no_query ? _(" (status not queried)") : "");
Julian Phillipsb684e972010-06-26 00:41:34 +01001188 for_each_string_list(info.list, show_remote_info_item, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001189 string_list_clear(info.list, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001190
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001191 /* git pull info */
1192 info.width = 0;
1193 info.any_rebase = 0;
Julian Phillipsb684e972010-06-26 00:41:34 +01001194 for_each_string_list(&branch_list, add_local_to_show_info, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001195 if (info.list->nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001196 printf_ln(Q_(" Local branch configured for 'git pull':",
1197 " Local branches configured for 'git pull':",
1198 info.list->nr));
Julian Phillipsb684e972010-06-26 00:41:34 +01001199 for_each_string_list(info.list, show_local_info_item, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001200 string_list_clear(info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001201
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001202 /* git push info */
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001203 if (states.remote->mirror)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001204 printf_ln(_(" Local refs will be mirrored by 'git push'"));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001205
1206 info.width = info.width2 = 0;
Julian Phillipsb684e972010-06-26 00:41:34 +01001207 for_each_string_list(&states.push, add_push_to_show_info, &info);
René Scharfe9ed0d8d2016-09-29 17:27:31 +02001208 QSORT(info.list->items, info.list->nr, cmp_string_with_push);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001209 if (info.list->nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001210 printf_ln(Q_(" Local ref configured for 'git push'%s:",
1211 " Local refs configured for 'git push'%s:",
1212 info.list->nr),
1213 no_query ? _(" (status not queried)") : "");
Julian Phillipsb684e972010-06-26 00:41:34 +01001214 for_each_string_list(info.list, show_push_info_item, &info);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001215 string_list_clear(info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001216
Jay Soffian88733232009-02-25 03:32:19 -05001217 free_remote_ref_states(&states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001218 }
1219
1220 return result;
1221}
1222
Jay Soffianbc14fac2009-02-25 03:32:25 -05001223static int set_head(int argc, const char **argv)
1224{
1225 int i, opt_a = 0, opt_d = 0, result = 0;
1226 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1227 char *head_name = NULL;
1228
1229 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001230 OPT_BOOL('a', "auto", &opt_a,
1231 N_("set refs/remotes/<name>/HEAD according to remote")),
1232 OPT_BOOL('d', "delete", &opt_d,
1233 N_("delete refs/remotes/<name>/HEAD")),
Jay Soffianbc14fac2009-02-25 03:32:25 -05001234 OPT_END()
1235 };
Tim Henigan45041072009-11-20 18:43:13 -05001236 argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001237 0);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001238 if (argc)
1239 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1240
1241 if (!opt_a && !opt_d && argc == 2) {
1242 head_name = xstrdup(argv[1]);
1243 } else if (opt_a && !opt_d && argc == 1) {
1244 struct ref_states states;
1245 memset(&states, 0, sizeof(states));
1246 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1247 if (!states.heads.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001248 result |= error(_("Cannot determine remote HEAD"));
Jay Soffianbc14fac2009-02-25 03:32:25 -05001249 else if (states.heads.nr > 1) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001250 result |= error(_("Multiple remote HEAD branches. "
1251 "Please choose one explicitly with:"));
Jay Soffianbc14fac2009-02-25 03:32:25 -05001252 for (i = 0; i < states.heads.nr; i++)
1253 fprintf(stderr, " git remote set-head %s %s\n",
1254 argv[0], states.heads.items[i].string);
1255 } else
1256 head_name = xstrdup(states.heads.items[0].string);
1257 free_remote_ref_states(&states);
1258 } else if (opt_d && !opt_a && argc == 1) {
Michael Haggerty91774af2017-11-05 09:42:06 +01001259 if (delete_ref(NULL, buf.buf, NULL, REF_NO_DEREF))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001260 result |= error(_("Could not delete %s"), buf.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001261 } else
Tim Henigan45041072009-11-20 18:43:13 -05001262 usage_with_options(builtin_remote_sethead_usage, options);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001263
1264 if (head_name) {
Jay Soffianbc14fac2009-02-25 03:32:25 -05001265 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1266 /* make sure it's valid */
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +07001267 if (!ref_exists(buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001268 result |= error(_("Not a valid ref: %s"), buf2.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001269 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001270 result |= error(_("Could not setup %s"), buf.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001271 if (opt_a)
1272 printf("%s/HEAD set to %s\n", argv[0], head_name);
1273 free(head_name);
1274 }
1275
1276 strbuf_release(&buf);
1277 strbuf_release(&buf2);
1278 return result;
1279}
1280
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001281static int prune_remote(const char *remote, int dry_run)
1282{
Michael Haggerty85529432014-11-25 09:02:34 +01001283 int result = 0;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001284 struct ref_states states;
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001285 struct string_list refs_to_prune = STRING_LIST_INIT_NODUP;
Michael Haggerty85529432014-11-25 09:02:34 +01001286 struct string_list_item *item;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001287 const char *dangling_msg = dry_run
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001288 ? _(" %s will become dangling!")
1289 : _(" %s has become dangling!");
Junio C Hamanof8948e22009-02-08 23:27:10 -08001290
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001291 memset(&states, 0, sizeof(states));
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001292 get_remote_ref_states(remote, &states, GET_REF_STATES);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001293
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001294 if (!states.stale.nr) {
1295 free_remote_ref_states(&states);
1296 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001297 }
1298
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001299 printf_ln(_("Pruning %s"), remote);
1300 printf_ln(_("URL: %s"),
1301 states.remote->url_nr
1302 ? states.remote->url[0]
1303 : _("(no URL)"));
1304
Michael Haggerty85529432014-11-25 09:02:34 +01001305 for_each_string_list_item(item, &states.stale)
1306 string_list_append(&refs_to_prune, item->util);
Michael Haggerty3383e192014-11-25 09:02:35 +01001307 string_list_sort(&refs_to_prune);
Michael Haggerty28d3f212014-11-25 09:02:30 +01001308
Michael Haggertya1223662015-06-22 16:02:58 +02001309 if (!dry_run)
Michael Haggerty64da4192017-05-22 16:17:38 +02001310 result |= delete_refs("remote: prune", &refs_to_prune, 0);
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001311
Michael Haggerty85529432014-11-25 09:02:34 +01001312 for_each_string_list_item(item, &states.stale) {
1313 const char *refname = item->util;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001314
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001315 if (dry_run)
1316 printf_ln(_(" * [would prune] %s"),
1317 abbrev_ref(refname, "refs/remotes/"));
1318 else
1319 printf_ln(_(" * [pruned] %s"),
1320 abbrev_ref(refname, "refs/remotes/"));
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001321 }
1322
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001323 warn_dangling_symrefs(stdout, dangling_msg, &refs_to_prune);
Jens Lindströme6bea662014-05-23 12:30:25 +02001324
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001325 string_list_clear(&refs_to_prune, 0);
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001326 free_remote_ref_states(&states);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001327 return result;
1328}
1329
Michael Haggertyce2223f2013-10-30 06:33:02 +01001330static int prune(int argc, const char **argv)
1331{
1332 int dry_run = 0, result = 0;
1333 struct option options[] = {
1334 OPT__DRY_RUN(&dry_run, N_("dry run")),
1335 OPT_END()
1336 };
1337
1338 argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
1339 0);
1340
1341 if (argc < 1)
1342 usage_with_options(builtin_remote_prune_usage, options);
1343
1344 for (; argc; argc--, argv++)
1345 result |= prune_remote(*argv, dry_run);
1346
1347 return result;
1348}
1349
Björn Gustavsson8db35592009-11-10 09:21:32 +01001350static int get_remote_default(const char *key, const char *value, void *priv)
Johannes Schindelin211c8962008-02-29 01:45:45 +00001351{
Björn Gustavsson8db35592009-11-10 09:21:32 +01001352 if (strcmp(key, "remotes.default") == 0) {
1353 int *found = priv;
1354 *found = 1;
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001355 }
Johannes Schindelin211c8962008-02-29 01:45:45 +00001356 return 0;
1357}
1358
1359static int update(int argc, const char **argv)
1360{
Michael Haggerty90765fa2013-10-30 06:33:04 +01001361 int i, prune = -1;
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001362 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001363 OPT_BOOL('p', "prune", &prune,
1364 N_("prune remotes after fetching")),
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001365 OPT_END()
1366 };
Michael Haggerty86075902013-10-30 06:33:03 +01001367 struct argv_array fetch_argv = ARGV_ARRAY_INIT;
Björn Gustavsson8db35592009-11-10 09:21:32 +01001368 int default_defined = 0;
Michael Haggerty86075902013-10-30 06:33:03 +01001369 int retval;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001370
Tim Henigan45041072009-11-20 18:43:13 -05001371 argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001372 PARSE_OPT_KEEP_ARGV0);
Björn Gustavsson8db35592009-11-10 09:21:32 +01001373
Michael Haggerty86075902013-10-30 06:33:03 +01001374 argv_array_push(&fetch_argv, "fetch");
Björn Gustavsson8db35592009-11-10 09:21:32 +01001375
Michael Haggerty90765fa2013-10-30 06:33:04 +01001376 if (prune != -1)
1377 argv_array_push(&fetch_argv, prune ? "--prune" : "--no-prune");
Björn Gustavsson8db35592009-11-10 09:21:32 +01001378 if (verbose)
Michael Haggerty86075902013-10-30 06:33:03 +01001379 argv_array_push(&fetch_argv, "-v");
1380 argv_array_push(&fetch_argv, "--multiple");
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001381 if (argc < 2)
Michael Haggerty86075902013-10-30 06:33:03 +01001382 argv_array_push(&fetch_argv, "default");
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001383 for (i = 1; i < argc; i++)
Michael Haggerty86075902013-10-30 06:33:03 +01001384 argv_array_push(&fetch_argv, argv[i]);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001385
Michael Haggerty86075902013-10-30 06:33:03 +01001386 if (strcmp(fetch_argv.argv[fetch_argv.argc-1], "default") == 0) {
Björn Gustavsson8db35592009-11-10 09:21:32 +01001387 git_config(get_remote_default, &default_defined);
Michael Haggerty86075902013-10-30 06:33:03 +01001388 if (!default_defined) {
1389 argv_array_pop(&fetch_argv);
1390 argv_array_push(&fetch_argv, "--all");
1391 }
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001392 }
1393
Michael Haggerty86075902013-10-30 06:33:03 +01001394 retval = run_command_v_opt(fetch_argv.argv, RUN_GIT_CMD);
1395 argv_array_clear(&fetch_argv);
1396 return retval;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001397}
1398
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001399static int remove_all_fetch_refspecs(const char *remote, const char *key)
1400{
Patrick Steinhardt30598ad2016-02-22 12:23:35 +01001401 return git_config_set_multivar_gently(key, NULL, NULL, 1);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001402}
1403
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +01001404static void add_branches(struct remote *remote, const char **branches,
1405 const char *key)
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001406{
1407 const char *remotename = remote->name;
1408 int mirror = remote->mirror;
1409 struct strbuf refspec = STRBUF_INIT;
1410
1411 for (; *branches; branches++)
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +01001412 add_branch(key, *branches, remotename, mirror, &refspec);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001413
1414 strbuf_release(&refspec);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001415}
1416
1417static int set_remote_branches(const char *remotename, const char **branches,
1418 int add_mode)
1419{
1420 struct strbuf key = STRBUF_INIT;
1421 struct remote *remote;
1422
1423 strbuf_addf(&key, "remote.%s.fetch", remotename);
1424
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001425 remote = remote_get(remotename);
Johannes Schindeline459b072017-01-19 22:20:02 +01001426 if (!remote_is_configured(remote, 1))
Thomas Gummerer674468b2016-02-16 10:47:50 +01001427 die(_("No such remote '%s'"), remotename);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001428
1429 if (!add_mode && remove_all_fetch_refspecs(remotename, key.buf)) {
1430 strbuf_release(&key);
1431 return 1;
1432 }
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +01001433 add_branches(remote, branches, key.buf);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001434
1435 strbuf_release(&key);
1436 return 0;
1437}
1438
1439static int set_branches(int argc, const char **argv)
1440{
1441 int add_mode = 0;
1442 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001443 OPT_BOOL('\0', "add", &add_mode, N_("add branch")),
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001444 OPT_END()
1445 };
1446
1447 argc = parse_options(argc, argv, NULL, options,
1448 builtin_remote_setbranches_usage, 0);
1449 if (argc == 0) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001450 error(_("no remote specified"));
Junio C Hamano656cdf02011-11-06 21:12:59 -08001451 usage_with_options(builtin_remote_setbranches_usage, options);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001452 }
1453 argv[argc] = NULL;
1454
1455 return set_remote_branches(argv[0], argv + 1, add_mode);
1456}
1457
Ben Boeckel96f78d32015-09-15 21:53:47 -04001458static int get_url(int argc, const char **argv)
1459{
1460 int i, push_mode = 0, all_mode = 0;
1461 const char *remotename = NULL;
1462 struct remote *remote;
1463 const char **url;
1464 int url_nr;
1465 struct option options[] = {
1466 OPT_BOOL('\0', "push", &push_mode,
1467 N_("query push URLs rather than fetch URLs")),
1468 OPT_BOOL('\0', "all", &all_mode,
1469 N_("return all URLs")),
1470 OPT_END()
1471 };
1472 argc = parse_options(argc, argv, NULL, options, builtin_remote_geturl_usage, 0);
1473
1474 if (argc != 1)
1475 usage_with_options(builtin_remote_geturl_usage, options);
1476
1477 remotename = argv[0];
1478
Ben Boeckel96f78d32015-09-15 21:53:47 -04001479 remote = remote_get(remotename);
Johannes Schindeline459b072017-01-19 22:20:02 +01001480 if (!remote_is_configured(remote, 1))
Thomas Gummerer674468b2016-02-16 10:47:50 +01001481 die(_("No such remote '%s'"), remotename);
Ben Boeckel96f78d32015-09-15 21:53:47 -04001482
1483 url_nr = 0;
1484 if (push_mode) {
1485 url = remote->pushurl;
1486 url_nr = remote->pushurl_nr;
1487 }
1488 /* else fetch mode */
1489
1490 /* Use the fetch URL when no push URLs were found or requested. */
1491 if (!url_nr) {
1492 url = remote->url;
1493 url_nr = remote->url_nr;
1494 }
1495
1496 if (!url_nr)
1497 die(_("no URLs configured for remote '%s'"), remotename);
1498
1499 if (all_mode) {
1500 for (i = 0; i < url_nr; i++)
1501 printf_ln("%s", url[i]);
1502 } else {
1503 printf_ln("%s", *url);
1504 }
1505
1506 return 0;
1507}
1508
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001509static int set_url(int argc, const char **argv)
1510{
1511 int i, push_mode = 0, add_mode = 0, delete_mode = 0;
1512 int matches = 0, negative_matches = 0;
1513 const char *remotename = NULL;
1514 const char *newurl = NULL;
1515 const char *oldurl = NULL;
1516 struct remote *remote;
1517 regex_t old_regex;
1518 const char **urlset;
1519 int urlset_nr;
1520 struct strbuf name_buf = STRBUF_INIT;
1521 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001522 OPT_BOOL('\0', "push", &push_mode,
1523 N_("manipulate push URLs")),
1524 OPT_BOOL('\0', "add", &add_mode,
1525 N_("add URL")),
1526 OPT_BOOL('\0', "delete", &delete_mode,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +07001527 N_("delete URLs")),
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001528 OPT_END()
1529 };
Felipe Contrerasc49904e2011-11-07 05:36:57 +02001530 argc = parse_options(argc, argv, NULL, options, builtin_remote_seturl_usage,
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001531 PARSE_OPT_KEEP_ARGV0);
1532
1533 if (add_mode && delete_mode)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001534 die(_("--add --delete doesn't make sense"));
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001535
1536 if (argc < 3 || argc > 4 || ((add_mode || delete_mode) && argc != 3))
1537 usage_with_options(builtin_remote_seturl_usage, options);
1538
1539 remotename = argv[1];
1540 newurl = argv[2];
1541 if (argc > 3)
1542 oldurl = argv[3];
1543
1544 if (delete_mode)
1545 oldurl = newurl;
1546
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001547 remote = remote_get(remotename);
Johannes Schindeline459b072017-01-19 22:20:02 +01001548 if (!remote_is_configured(remote, 1))
Thomas Gummerer674468b2016-02-16 10:47:50 +01001549 die(_("No such remote '%s'"), remotename);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001550
1551 if (push_mode) {
1552 strbuf_addf(&name_buf, "remote.%s.pushurl", remotename);
1553 urlset = remote->pushurl;
1554 urlset_nr = remote->pushurl_nr;
1555 } else {
1556 strbuf_addf(&name_buf, "remote.%s.url", remotename);
1557 urlset = remote->url;
1558 urlset_nr = remote->url_nr;
1559 }
1560
1561 /* Special cases that add new entry. */
1562 if ((!oldurl && !delete_mode) || add_mode) {
1563 if (add_mode)
1564 git_config_set_multivar(name_buf.buf, newurl,
Patrick Steinhardt45ebdcc2016-02-22 12:23:28 +01001565 "^$", 0);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001566 else
1567 git_config_set(name_buf.buf, newurl);
Rene Scharfe85af9f72017-08-30 20:00:27 +02001568 goto out;
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001569 }
1570
1571 /* Old URL specified. Demand that one matches. */
1572 if (regcomp(&old_regex, oldurl, REG_EXTENDED))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001573 die(_("Invalid old URL pattern: %s"), oldurl);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001574
1575 for (i = 0; i < urlset_nr; i++)
1576 if (!regexec(&old_regex, urlset[i], 0, NULL, 0))
1577 matches++;
1578 else
1579 negative_matches++;
1580 if (!delete_mode && !matches)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001581 die(_("No such URL found: %s"), oldurl);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001582 if (delete_mode && !negative_matches && !push_mode)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001583 die(_("Will not delete all non-push URLs"));
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001584
1585 regfree(&old_regex);
1586
1587 if (!delete_mode)
1588 git_config_set_multivar(name_buf.buf, newurl, oldurl, 0);
1589 else
1590 git_config_set_multivar(name_buf.buf, NULL, oldurl, 1);
Rene Scharfe85af9f72017-08-30 20:00:27 +02001591out:
1592 strbuf_release(&name_buf);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001593 return 0;
1594}
1595
Johannes Schindelin211c8962008-02-29 01:45:45 +00001596int cmd_remote(int argc, const char **argv, const char *prefix)
1597{
1598 struct option options[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +07001599 OPT__VERBOSE(&verbose, N_("be verbose; must be placed before a subcommand")),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001600 OPT_END()
1601 };
1602 int result;
1603
Stephen Boyd37782922009-05-23 11:53:12 -07001604 argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
Johannes Schindelin211c8962008-02-29 01:45:45 +00001605 PARSE_OPT_STOP_AT_NON_OPTION);
1606
1607 if (argc < 1)
1608 result = show_all();
1609 else if (!strcmp(argv[0], "add"))
1610 result = add(argc, argv);
Miklos Vajnabf984212008-11-03 19:26:18 +01001611 else if (!strcmp(argv[0], "rename"))
1612 result = mv(argc, argv);
Nguyễn Thái Ngọc Duye17dba82012-09-06 19:25:23 +07001613 else if (!strcmp(argv[0], "rm") || !strcmp(argv[0], "remove"))
Johannes Schindelin211c8962008-02-29 01:45:45 +00001614 result = rm(argc, argv);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001615 else if (!strcmp(argv[0], "set-head"))
1616 result = set_head(argc, argv);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001617 else if (!strcmp(argv[0], "set-branches"))
1618 result = set_branches(argc, argv);
Ben Boeckel96f78d32015-09-15 21:53:47 -04001619 else if (!strcmp(argv[0], "get-url"))
1620 result = get_url(argc, argv);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001621 else if (!strcmp(argv[0], "set-url"))
1622 result = set_url(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001623 else if (!strcmp(argv[0], "show"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001624 result = show(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001625 else if (!strcmp(argv[0], "prune"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001626 result = prune(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001627 else if (!strcmp(argv[0], "update"))
1628 result = update(argc, argv);
1629 else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001630 error(_("Unknown subcommand: %s"), argv[0]);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001631 usage_with_options(builtin_remote_usage, options);
1632 }
1633
1634 return result ? 1 : 0;
1635}