blob: 2b2ff9b7d2152ce4ac9314bc8f111c02723703e6 [file] [log] [blame]
Stephen Boydc2e86ad2011-03-22 00:51:05 -07001#include "builtin.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +00002#include "parse-options.h"
3#include "transport.h"
4#include "remote.h"
Johannes Schindelinc455c872008-07-21 19:03:49 +01005#include "string-list.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +00006#include "strbuf.h"
7#include "run-command.h"
8#include "refs.h"
Michael Haggerty86075902013-10-30 06:33:03 +01009#include "argv-array.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +000010
11static const char * const builtin_remote_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070012 N_("git remote [-v | --verbose]"),
Alex Henrie9c9b4f22015-01-13 00:44:47 -070013 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 +070014 N_("git remote rename <old> <new>"),
Junio C Hamano90585602012-09-12 14:21:58 -070015 N_("git remote remove <name>"),
Alex Henrie9c9b4f22015-01-13 00:44:47 -070016 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070017 N_("git remote [-v | --verbose] show [-n] <name>"),
18 N_("git remote prune [-n | --dry-run] <name>"),
19 N_("git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"),
20 N_("git remote set-branches [--add] <name> <branch>..."),
Ben Boeckel96f78d32015-09-15 21:53:47 -040021 N_("git remote get-url [--push] [--all] <name>"),
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070022 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
23 N_("git remote set-url --add <name> <newurl>"),
24 N_("git remote set-url --delete <name> <url>"),
Johannes Schindelin211c8962008-02-29 01:45:45 +000025 NULL
26};
27
Tim Henigan45041072009-11-20 18:43:13 -050028static const char * const builtin_remote_add_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070029 N_("git remote add [<options>] <name> <url>"),
Tim Henigan45041072009-11-20 18:43:13 -050030 NULL
31};
32
33static const char * const builtin_remote_rename_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070034 N_("git remote rename <old> <new>"),
Tim Henigan45041072009-11-20 18:43:13 -050035 NULL
36};
37
38static const char * const builtin_remote_rm_usage[] = {
Junio C Hamano90585602012-09-12 14:21:58 -070039 N_("git remote remove <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050040 NULL
41};
42
43static const char * const builtin_remote_sethead_usage[] = {
Philip Oakleye49c8f32013-09-21 16:51:46 +010044 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
Tim Henigan45041072009-11-20 18:43:13 -050045 NULL
46};
47
Jonathan Nieder3d8b6942010-05-19 13:38:50 -050048static const char * const builtin_remote_setbranches_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070049 N_("git remote set-branches <name> <branch>..."),
50 N_("git remote set-branches --add <name> <branch>..."),
Jonathan Nieder3d8b6942010-05-19 13:38:50 -050051 NULL
52};
53
Tim Henigan45041072009-11-20 18:43:13 -050054static const char * const builtin_remote_show_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070055 N_("git remote show [<options>] <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050056 NULL
57};
58
59static const char * const builtin_remote_prune_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070060 N_("git remote prune [<options>] <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050061 NULL
62};
63
64static const char * const builtin_remote_update_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070065 N_("git remote update [<options>] [<group> | <remote>]..."),
Tim Henigan45041072009-11-20 18:43:13 -050066 NULL
67};
68
Ben Boeckel96f78d32015-09-15 21:53:47 -040069static const char * const builtin_remote_geturl_usage[] = {
70 N_("git remote get-url [--push] [--all] <name>"),
71 NULL
72};
73
Ilari Liusvaara433f2be2010-01-18 19:18:02 +020074static const char * const builtin_remote_seturl_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070075 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
76 N_("git remote set-url --add <name> <newurl>"),
77 N_("git remote set-url --delete <name> <url>"),
Ilari Liusvaara433f2be2010-01-18 19:18:02 +020078 NULL
79};
80
Jay Soffiane61e0cc2009-02-25 03:32:24 -050081#define GET_REF_STATES (1<<0)
82#define GET_HEAD_NAMES (1<<1)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -050083#define GET_PUSH_REF_STATES (1<<2)
Jay Soffiane61e0cc2009-02-25 03:32:24 -050084
Johannes Schindelin211c8962008-02-29 01:45:45 +000085static int verbose;
86
Johannes Schindelin211c8962008-02-29 01:45:45 +000087static int fetch_remote(const char *name)
88{
Cheng Renquandbbd56f2008-11-18 19:04:02 +080089 const char *argv[] = { "fetch", name, NULL, NULL };
90 if (verbose) {
91 argv[1] = "-v";
92 argv[2] = name;
93 }
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +070094 printf_ln(_("Updating %s"), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +000095 if (run_command_v_opt(argv, RUN_GIT_CMD))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +070096 return error(_("Could not fetch %s"), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +000097 return 0;
98}
99
Samuel Tardieu111fb852010-04-20 01:31:31 +0200100enum {
101 TAGS_UNSET = 0,
102 TAGS_DEFAULT = 1,
103 TAGS_SET = 2
104};
105
Jeff Kinga9f5a352011-03-30 15:53:19 -0400106#define MIRROR_NONE 0
107#define MIRROR_FETCH 1
108#define MIRROR_PUSH 2
109#define MIRROR_BOTH (MIRROR_FETCH|MIRROR_PUSH)
110
Jonathan Nieder3d8b6942010-05-19 13:38:50 -0500111static int add_branch(const char *key, const char *branchname,
112 const char *remotename, int mirror, struct strbuf *tmp)
113{
114 strbuf_reset(tmp);
115 strbuf_addch(tmp, '+');
116 if (mirror)
117 strbuf_addf(tmp, "refs/%s:refs/%s",
118 branchname, branchname);
119 else
120 strbuf_addf(tmp, "refs/heads/%s:refs/remotes/%s/%s",
121 branchname, remotename, branchname);
122 return git_config_set_multivar(key, tmp->buf, "^$", 0);
123}
124
Jeff King09902482011-03-30 15:53:39 -0400125static const char mirror_advice[] =
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700126N_("--mirror is dangerous and deprecated; please\n"
127 "\t use --mirror=fetch or --mirror=push instead");
Jeff King09902482011-03-30 15:53:39 -0400128
Jeff Kinga9f5a352011-03-30 15:53:19 -0400129static int parse_mirror_opt(const struct option *opt, const char *arg, int not)
130{
131 unsigned *mirror = opt->value;
132 if (not)
133 *mirror = MIRROR_NONE;
Jeff King09902482011-03-30 15:53:39 -0400134 else if (!arg) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700135 warning("%s", _(mirror_advice));
Jeff Kinga9f5a352011-03-30 15:53:19 -0400136 *mirror = MIRROR_BOTH;
Jeff King09902482011-03-30 15:53:39 -0400137 }
Jeff Kinga9f5a352011-03-30 15:53:19 -0400138 else if (!strcmp(arg, "fetch"))
139 *mirror = MIRROR_FETCH;
140 else if (!strcmp(arg, "push"))
141 *mirror = MIRROR_PUSH;
142 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700143 return error(_("unknown mirror argument: %s"), arg);
Jeff Kinga9f5a352011-03-30 15:53:19 -0400144 return 0;
145}
146
Johannes Schindelin211c8962008-02-29 01:45:45 +0000147static int add(int argc, const char **argv)
148{
Jeff Kinga9f5a352011-03-30 15:53:19 -0400149 int fetch = 0, fetch_tags = TAGS_DEFAULT;
150 unsigned mirror = MIRROR_NONE;
Thiago Farina183113a2010-07-04 16:46:19 -0300151 struct string_list track = STRING_LIST_INIT_NODUP;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000152 const char *master = NULL;
153 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500154 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000155 const char *name, *url;
156 int i;
157
158 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200159 OPT_BOOL('f', "fetch", &fetch, N_("fetch the remote branches")),
Samuel Tardieu111fb852010-04-20 01:31:31 +0200160 OPT_SET_INT(0, "tags", &fetch_tags,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +0700161 N_("import all tags and associated objects when fetching"),
Samuel Tardieu111fb852010-04-20 01:31:31 +0200162 TAGS_SET),
163 OPT_SET_INT(0, NULL, &fetch_tags,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +0700164 N_("or do not fetch any tag at all (--no-tags)"), TAGS_UNSET),
165 OPT_STRING_LIST('t', "track", &track, N_("branch"),
166 N_("branch(es) to track")),
167 OPT_STRING('m', "master", &master, N_("branch"), N_("master branch")),
168 { OPTION_CALLBACK, 0, "mirror", &mirror, N_("push|fetch"),
169 N_("set up remote as a mirror to push to or fetch from"),
Jeff Kinga9f5a352011-03-30 15:53:19 -0400170 PARSE_OPT_OPTARG, parse_mirror_opt },
Johannes Schindelin211c8962008-02-29 01:45:45 +0000171 OPT_END()
172 };
173
Tim Henigan45041072009-11-20 18:43:13 -0500174 argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
Stephen Boyd37782922009-05-23 11:53:12 -0700175 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000176
Thomas Rast2d2e3d22013-04-24 15:54:36 +0200177 if (argc != 2)
Tim Henigan45041072009-11-20 18:43:13 -0500178 usage_with_options(builtin_remote_add_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000179
Jeff King13fc2c12011-03-30 15:52:52 -0400180 if (mirror && master)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700181 die(_("specifying a master branch makes no sense with --mirror"));
Jeff King3eafdc92011-05-26 11:11:00 -0400182 if (mirror && !(mirror & MIRROR_FETCH) && track.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700183 die(_("specifying branches to track makes sense only with fetch mirrors"));
Jeff King13fc2c12011-03-30 15:52:52 -0400184
Johannes Schindelin211c8962008-02-29 01:45:45 +0000185 name = argv[0];
186 url = argv[1];
187
188 remote = remote_get(name);
Johannes Schindelinfb86e322014-12-23 14:25:05 +0100189 if (remote && (remote->url_nr > 1 ||
190 (strcmp(name, remote->url[0]) &&
191 strcmp(url, remote->url[0])) ||
Johannes Schindelin211c8962008-02-29 01:45:45 +0000192 remote->fetch_refspec_nr))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700193 die(_("remote %s already exists."), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000194
Jonas Fonseca24b61772008-04-13 11:56:54 +0200195 strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
196 if (!valid_fetch_refspec(buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700197 die(_("'%s' is not a valid remote name"), name);
Jonas Fonseca24b61772008-04-13 11:56:54 +0200198
Johannes Schindelin211c8962008-02-29 01:45:45 +0000199 strbuf_addf(&buf, "remote.%s.url", name);
200 if (git_config_set(buf.buf, url))
201 return 1;
202
Jeff Kinga9f5a352011-03-30 15:53:19 -0400203 if (!mirror || mirror & MIRROR_FETCH) {
204 strbuf_reset(&buf);
205 strbuf_addf(&buf, "remote.%s.fetch", name);
206 if (track.nr == 0)
207 string_list_append(&track, "*");
208 for (i = 0; i < track.nr; i++) {
209 if (add_branch(buf.buf, track.items[i].string,
210 name, mirror, &buf2))
211 return 1;
212 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000213 }
214
Jeff Kinga9f5a352011-03-30 15:53:19 -0400215 if (mirror & MIRROR_PUSH) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200216 strbuf_reset(&buf);
217 strbuf_addf(&buf, "remote.%s.mirror", name);
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200218 if (git_config_set(buf.buf, "true"))
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200219 return 1;
220 }
221
Samuel Tardieu111fb852010-04-20 01:31:31 +0200222 if (fetch_tags != TAGS_DEFAULT) {
223 strbuf_reset(&buf);
224 strbuf_addf(&buf, "remote.%s.tagopt", name);
225 if (git_config_set(buf.buf,
226 fetch_tags == TAGS_SET ? "--tags" : "--no-tags"))
227 return 1;
228 }
229
Johannes Schindelin211c8962008-02-29 01:45:45 +0000230 if (fetch && fetch_remote(name))
231 return 1;
232
233 if (master) {
234 strbuf_reset(&buf);
235 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
236
237 strbuf_reset(&buf2);
238 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
239
240 if (create_symref(buf.buf, buf2.buf, "remote add"))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700241 return error(_("Could not setup master '%s'"), master);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000242 }
243
244 strbuf_release(&buf);
245 strbuf_release(&buf2);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100246 string_list_clear(&track, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000247
248 return 0;
249}
250
251struct branch_info {
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500252 char *remote_name;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100253 struct string_list merge;
Johannes Schindelinb5496d42016-01-13 13:17:19 +0100254 enum { NO_REBASE, NORMAL_REBASE, INTERACTIVE_REBASE } rebase;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000255};
256
Johannes Schindelinc455c872008-07-21 19:03:49 +0100257static struct string_list branch_list;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000258
Junio C Hamano72972eb2008-07-17 21:30:33 -0700259static const char *abbrev_ref(const char *name, const char *prefix)
260{
Jeff Kingcf4fff52014-06-18 15:44:19 -0400261 skip_prefix(name, prefix, &name);
Junio C Hamano72972eb2008-07-17 21:30:33 -0700262 return name;
263}
264#define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
265
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100266static int config_read_branches(const char *key, const char *value, void *cb)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000267{
Christian Couder59556542013-11-30 21:55:40 +0100268 if (starts_with(key, "branch.")) {
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500269 const char *orig_key = key;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000270 char *name;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100271 struct string_list_item *item;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000272 struct branch_info *info;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500273 enum { REMOTE, MERGE, REBASE } type;
Jeff King26936bf2014-06-30 12:58:51 -0400274 size_t key_len;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000275
276 key += 7;
Jeff King26936bf2014-06-30 12:58:51 -0400277 if (strip_suffix(key, ".remote", &key_len)) {
278 name = xmemdupz(key, key_len);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000279 type = REMOTE;
Jeff King26936bf2014-06-30 12:58:51 -0400280 } else if (strip_suffix(key, ".merge", &key_len)) {
281 name = xmemdupz(key, key_len);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000282 type = MERGE;
Jeff King26936bf2014-06-30 12:58:51 -0400283 } else if (strip_suffix(key, ".rebase", &key_len)) {
284 name = xmemdupz(key, key_len);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500285 type = REBASE;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000286 } else
287 return 0;
288
Julian Phillips78a395d2010-06-26 00:41:35 +0100289 item = string_list_insert(&branch_list, name);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000290
291 if (!item->util)
Brian Gesiak38069452014-05-27 00:33:44 +0900292 item->util = xcalloc(1, sizeof(struct branch_info));
Johannes Schindelin211c8962008-02-29 01:45:45 +0000293 info = item->util;
294 if (type == REMOTE) {
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500295 if (info->remote_name)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700296 warning(_("more than one %s"), orig_key);
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500297 info->remote_name = xstrdup(value);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500298 } else if (type == MERGE) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000299 char *space = strchr(value, ' ');
Junio C Hamano72972eb2008-07-17 21:30:33 -0700300 value = abbrev_branch(value);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000301 while (space) {
302 char *merge;
303 merge = xstrndup(value, space - value);
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100304 string_list_append(&info->merge, merge);
Junio C Hamano72972eb2008-07-17 21:30:33 -0700305 value = abbrev_branch(space + 1);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000306 space = strchr(value, ' ');
307 }
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100308 string_list_append(&info->merge, xstrdup(value));
Felipe Contreras0a54f702013-12-07 07:08:37 -0600309 } else {
310 int v = git_config_maybe_bool(orig_key, value);
311 if (v >= 0)
312 info->rebase = v;
313 else if (!strcmp(value, "preserve"))
Johannes Schindelinb5496d42016-01-13 13:17:19 +0100314 info->rebase = NORMAL_REBASE;
315 else if (!strcmp(value, "interactive"))
316 info->rebase = INTERACTIVE_REBASE;
Felipe Contreras0a54f702013-12-07 07:08:37 -0600317 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000318 }
319 return 0;
320}
321
322static void read_branches(void)
323{
324 if (branch_list.nr)
325 return;
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100326 git_config(config_read_branches, NULL);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000327}
328
329struct ref_states {
330 struct remote *remote;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500331 struct string_list new, stale, tracked, heads, push;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500332 int queried;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000333};
334
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500335static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000336{
337 struct ref *fetch_map = NULL, **tail = &fetch_map;
Jay Soffianf2ef6072009-11-10 00:03:31 -0500338 struct ref *ref, *stale_refs;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000339 int i;
340
341 for (i = 0; i < states->remote->fetch_refspec_nr; i++)
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500342 if (get_fetch_map(remote_refs, states->remote->fetch + i, &tail, 1))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700343 die(_("Could not get fetch map for refspec %s"),
Johannes Schindelin211c8962008-02-29 01:45:45 +0000344 states->remote->fetch_refspec[i]);
345
Bert Wesarg92f676f2009-12-01 00:57:27 +0100346 states->new.strdup_strings = 1;
347 states->tracked.strdup_strings = 1;
348 states->stale.strdup_strings = 1;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000349 for (ref = fetch_map; ref; ref = ref->next) {
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +0700350 if (!ref->peer_ref || !ref_exists(ref->peer_ref->name))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100351 string_list_append(&states->new, abbrev_branch(ref->name));
Jay Soffian7b9a5e22009-02-25 03:32:20 -0500352 else
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100353 string_list_append(&states->tracked, abbrev_branch(ref->name));
Johannes Schindelin211c8962008-02-29 01:45:45 +0000354 }
Carlos Martín Nietoed43de62011-10-15 07:04:25 +0200355 stale_refs = get_stale_heads(states->remote->fetch,
356 states->remote->fetch_refspec_nr, fetch_map);
Jay Soffianf2ef6072009-11-10 00:03:31 -0500357 for (ref = stale_refs; ref; ref = ref->next) {
358 struct string_list_item *item =
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100359 string_list_append(&states->stale, abbrev_branch(ref->name));
Jay Soffianf2ef6072009-11-10 00:03:31 -0500360 item->util = xstrdup(ref->name);
361 }
362 free_refs(stale_refs);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000363 free_refs(fetch_map);
364
Michael Haggerty3383e192014-11-25 09:02:35 +0100365 string_list_sort(&states->new);
366 string_list_sort(&states->tracked);
367 string_list_sort(&states->stale);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000368
369 return 0;
370}
371
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500372struct push_info {
373 char *dest;
374 int forced;
375 enum {
376 PUSH_STATUS_CREATE = 0,
377 PUSH_STATUS_DELETE,
378 PUSH_STATUS_UPTODATE,
379 PUSH_STATUS_FASTFORWARD,
380 PUSH_STATUS_OUTOFDATE,
Gary V. Vaughan4b055482010-05-14 09:31:35 +0000381 PUSH_STATUS_NOTQUERIED
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500382 } status;
383};
384
385static int get_push_ref_states(const struct ref *remote_refs,
386 struct ref_states *states)
387{
388 struct remote *remote = states->remote;
Clemens Buchacher6d2bf962009-05-31 16:26:48 +0200389 struct ref *ref, *local_refs, *push_map;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500390 if (remote->mirror)
391 return 0;
392
393 local_refs = get_local_heads();
Clemens Buchacher6a015542009-05-27 22:13:43 +0200394 push_map = copy_ref_list(remote_refs);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500395
Junio C Hamano29753cd2011-09-09 11:54:58 -0700396 match_push_refs(local_refs, &push_map, remote->push_refspec_nr,
397 remote->push_refspec, MATCH_REFS_NONE);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500398
399 states->push.strdup_strings = 1;
400 for (ref = push_map; ref; ref = ref->next) {
401 struct string_list_item *item;
402 struct push_info *info;
403
404 if (!ref->peer_ref)
405 continue;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000406 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500407
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100408 item = string_list_append(&states->push,
409 abbrev_branch(ref->peer_ref->name));
Brian Gesiak38069452014-05-27 00:33:44 +0900410 item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500411 info = item->util;
412 info->forced = ref->force;
413 info->dest = xstrdup(abbrev_branch(ref->name));
414
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000415 if (is_null_oid(&ref->new_oid)) {
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500416 info->status = PUSH_STATUS_DELETE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000417 } else if (!oidcmp(&ref->old_oid, &ref->new_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500418 info->status = PUSH_STATUS_UPTODATE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000419 else if (is_null_oid(&ref->old_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500420 info->status = PUSH_STATUS_CREATE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000421 else if (has_object_file(&ref->old_oid) &&
brian m. carlson6f3d57b2015-11-10 02:22:25 +0000422 ref_newer(&ref->new_oid, &ref->old_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500423 info->status = PUSH_STATUS_FASTFORWARD;
424 else
425 info->status = PUSH_STATUS_OUTOFDATE;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500426 }
427 free_refs(local_refs);
428 free_refs(push_map);
429 return 0;
430}
431
432static int get_push_ref_states_noquery(struct ref_states *states)
433{
434 int i;
435 struct remote *remote = states->remote;
436 struct string_list_item *item;
437 struct push_info *info;
438
439 if (remote->mirror)
440 return 0;
441
442 states->push.strdup_strings = 1;
443 if (!remote->push_refspec_nr) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700444 item = string_list_append(&states->push, _("(matching)"));
Brian Gesiak38069452014-05-27 00:33:44 +0900445 info = item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500446 info->status = PUSH_STATUS_NOTQUERIED;
447 info->dest = xstrdup(item->string);
448 }
449 for (i = 0; i < remote->push_refspec_nr; i++) {
450 struct refspec *spec = remote->push + i;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500451 if (spec->matching)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700452 item = string_list_append(&states->push, _("(matching)"));
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800453 else if (strlen(spec->src))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100454 item = string_list_append(&states->push, spec->src);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500455 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700456 item = string_list_append(&states->push, _("(delete)"));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500457
Brian Gesiak38069452014-05-27 00:33:44 +0900458 info = item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500459 info->forced = spec->force;
460 info->status = PUSH_STATUS_NOTQUERIED;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800461 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500462 }
463 return 0;
464}
465
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500466static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
467{
468 struct ref *ref, *matches;
469 struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
470 struct refspec refspec;
471
472 refspec.force = 0;
473 refspec.pattern = 1;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800474 refspec.src = refspec.dst = "refs/heads/*";
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500475 states->heads.strdup_strings = 1;
476 get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
477 matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
478 fetch_map, 1);
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -0400479 for (ref = matches; ref; ref = ref->next)
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100480 string_list_append(&states->heads, abbrev_branch(ref->name));
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500481
482 free_refs(fetch_map);
483 free_refs(matches);
484
485 return 0;
486}
487
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400488struct known_remote {
489 struct known_remote *next;
490 struct remote *remote;
491};
492
493struct known_remotes {
494 struct remote *to_delete;
495 struct known_remote *list;
496};
497
498static int add_known_remote(struct remote *remote, void *cb_data)
499{
500 struct known_remotes *all = cb_data;
501 struct known_remote *r;
502
503 if (!strcmp(all->to_delete->name, remote->name))
504 return 0;
505
506 r = xmalloc(sizeof(*r));
507 r->remote = remote;
508 r->next = all->list;
509 all->list = r;
510 return 0;
511}
512
Johannes Schindelin211c8962008-02-29 01:45:45 +0000513struct branches_for_remote {
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400514 struct remote *remote;
Jay Soffian441adf02009-02-04 11:06:07 -0500515 struct string_list *branches, *skipped;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400516 struct known_remotes *keep;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000517};
518
519static int add_branch_for_removal(const char *refname,
Michael Haggerty45690a52015-05-25 18:38:41 +0000520 const struct object_id *oid, int flags, void *cb_data)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000521{
522 struct branches_for_remote *branches = cb_data;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400523 struct refspec refspec;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400524 struct known_remote *kr;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000525
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400526 memset(&refspec, 0, sizeof(refspec));
527 refspec.dst = (char *)refname;
528 if (remote_find_tracking(branches->remote, &refspec))
529 return 0;
Johannes Schindelin3b9dcff2008-03-08 23:40:42 +0100530
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400531 /* don't delete a branch if another remote also uses it */
532 for (kr = branches->keep->list; kr; kr = kr->next) {
533 memset(&refspec, 0, sizeof(refspec));
534 refspec.dst = (char *)refname;
535 if (!remote_find_tracking(kr->remote, &refspec))
536 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000537 }
538
Matthieu Moy13931232010-11-02 16:31:25 +0100539 /* don't delete non-remote-tracking refs */
Christian Couder59556542013-11-30 21:55:40 +0100540 if (!starts_with(refname, "refs/remotes/")) {
Jay Soffian441adf02009-02-04 11:06:07 -0500541 /* advise user how to delete local branches */
Christian Couder59556542013-11-30 21:55:40 +0100542 if (starts_with(refname, "refs/heads/"))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100543 string_list_append(branches->skipped,
544 abbrev_branch(refname));
Jay Soffian441adf02009-02-04 11:06:07 -0500545 /* silently skip over other non-remote refs */
546 return 0;
547 }
548
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400549 /* make sure that symrefs are deleted */
550 if (flags & REF_ISSYMREF)
Daniel Lowe9db56f72008-11-10 16:07:52 -0500551 return unlink(git_path("%s", refname));
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400552
Michael Haggertye26cdf92015-05-25 18:38:42 +0000553 string_list_append(branches->branches, refname);
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400554
Johannes Schindelin211c8962008-02-29 01:45:45 +0000555 return 0;
556}
557
Miklos Vajnabf984212008-11-03 19:26:18 +0100558struct rename_info {
559 const char *old;
560 const char *new;
561 struct string_list *remote_branches;
562};
563
564static int read_remote_branches(const char *refname,
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000565 const struct object_id *oid, int flags, void *cb_data)
Miklos Vajnabf984212008-11-03 19:26:18 +0100566{
567 struct rename_info *rename = cb_data;
568 struct strbuf buf = STRBUF_INIT;
569 struct string_list_item *item;
570 int flag;
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000571 struct object_id orig_oid;
Miklos Vajnabf984212008-11-03 19:26:18 +0100572 const char *symref;
573
Martin von Zweigbergk60e5eee2011-09-01 20:50:34 -0400574 strbuf_addf(&buf, "refs/remotes/%s/", rename->old);
Christian Couder59556542013-11-30 21:55:40 +0100575 if (starts_with(refname, buf.buf)) {
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100576 item = string_list_append(rename->remote_branches, xstrdup(refname));
Ronnie Sahlberg7695d112014-07-15 12:59:36 -0700577 symref = resolve_ref_unsafe(refname, RESOLVE_REF_READING,
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000578 orig_oid.hash, &flag);
Miklos Vajnabf984212008-11-03 19:26:18 +0100579 if (flag & REF_ISSYMREF)
580 item->util = xstrdup(symref);
581 else
582 item->util = NULL;
583 }
584
585 return 0;
586}
587
Miklos Vajna1dd12392008-11-10 21:43:01 +0100588static int migrate_file(struct remote *remote)
589{
590 struct strbuf buf = STRBUF_INIT;
591 int i;
Miklos Vajna1dd12392008-11-10 21:43:01 +0100592
593 strbuf_addf(&buf, "remote.%s.url", remote->name);
594 for (i = 0; i < remote->url_nr; i++)
595 if (git_config_set_multivar(buf.buf, remote->url[i], "^$", 0))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700596 return error(_("Could not append '%s' to '%s'"),
Miklos Vajna1dd12392008-11-10 21:43:01 +0100597 remote->url[i], buf.buf);
598 strbuf_reset(&buf);
599 strbuf_addf(&buf, "remote.%s.push", remote->name);
600 for (i = 0; i < remote->push_refspec_nr; i++)
601 if (git_config_set_multivar(buf.buf, remote->push_refspec[i], "^$", 0))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700602 return error(_("Could not append '%s' to '%s'"),
Miklos Vajna1dd12392008-11-10 21:43:01 +0100603 remote->push_refspec[i], buf.buf);
604 strbuf_reset(&buf);
605 strbuf_addf(&buf, "remote.%s.fetch", remote->name);
606 for (i = 0; i < remote->fetch_refspec_nr; i++)
607 if (git_config_set_multivar(buf.buf, remote->fetch_refspec[i], "^$", 0))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700608 return error(_("Could not append '%s' to '%s'"),
Miklos Vajna1dd12392008-11-10 21:43:01 +0100609 remote->fetch_refspec[i], buf.buf);
610 if (remote->origin == REMOTE_REMOTES)
Jeff Kingb21a5d62015-08-10 05:35:49 -0400611 unlink_or_warn(git_path("remotes/%s", remote->name));
Miklos Vajna1dd12392008-11-10 21:43:01 +0100612 else if (remote->origin == REMOTE_BRANCHES)
Jeff Kingb21a5d62015-08-10 05:35:49 -0400613 unlink_or_warn(git_path("branches/%s", remote->name));
Miklos Vajna1dd12392008-11-10 21:43:01 +0100614 return 0;
615}
616
Miklos Vajnabf984212008-11-03 19:26:18 +0100617static int mv(int argc, const char **argv)
618{
619 struct option options[] = {
620 OPT_END()
621 };
622 struct remote *oldremote, *newremote;
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400623 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT,
624 old_remote_context = STRBUF_INIT;
Thiago Farina183113a2010-07-04 16:46:19 -0300625 struct string_list remote_branches = STRING_LIST_INIT_NODUP;
Miklos Vajnabf984212008-11-03 19:26:18 +0100626 struct rename_info rename;
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400627 int i, refspec_updated = 0;
Miklos Vajnabf984212008-11-03 19:26:18 +0100628
629 if (argc != 3)
Tim Henigan45041072009-11-20 18:43:13 -0500630 usage_with_options(builtin_remote_rename_usage, options);
Miklos Vajnabf984212008-11-03 19:26:18 +0100631
632 rename.old = argv[1];
633 rename.new = argv[2];
634 rename.remote_branches = &remote_branches;
635
636 oldremote = remote_get(rename.old);
637 if (!oldremote)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700638 die(_("No such remote: %s"), rename.old);
Miklos Vajnabf984212008-11-03 19:26:18 +0100639
Miklos Vajna1dd12392008-11-10 21:43:01 +0100640 if (!strcmp(rename.old, rename.new) && oldremote->origin != REMOTE_CONFIG)
641 return migrate_file(oldremote);
642
Miklos Vajnabf984212008-11-03 19:26:18 +0100643 newremote = remote_get(rename.new);
644 if (newremote && (newremote->url_nr > 1 || newremote->fetch_refspec_nr))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700645 die(_("remote %s already exists."), rename.new);
Miklos Vajnabf984212008-11-03 19:26:18 +0100646
647 strbuf_addf(&buf, "refs/heads/test:refs/remotes/%s/test", rename.new);
648 if (!valid_fetch_refspec(buf.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700649 die(_("'%s' is not a valid remote name"), rename.new);
Miklos Vajnabf984212008-11-03 19:26:18 +0100650
651 strbuf_reset(&buf);
652 strbuf_addf(&buf, "remote.%s", rename.old);
653 strbuf_addf(&buf2, "remote.%s", rename.new);
654 if (git_config_rename_section(buf.buf, buf2.buf) < 1)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700655 return error(_("Could not rename config section '%s' to '%s'"),
Miklos Vajnabf984212008-11-03 19:26:18 +0100656 buf.buf, buf2.buf);
657
658 strbuf_reset(&buf);
659 strbuf_addf(&buf, "remote.%s.fetch", rename.new);
660 if (git_config_set_multivar(buf.buf, NULL, NULL, 1))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700661 return error(_("Could not remove config section '%s'"), buf.buf);
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400662 strbuf_addf(&old_remote_context, ":refs/remotes/%s/", rename.old);
Miklos Vajnabf984212008-11-03 19:26:18 +0100663 for (i = 0; i < oldremote->fetch_refspec_nr; i++) {
664 char *ptr;
665
666 strbuf_reset(&buf2);
667 strbuf_addstr(&buf2, oldremote->fetch_refspec[i]);
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400668 ptr = strstr(buf2.buf, old_remote_context.buf);
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400669 if (ptr) {
670 refspec_updated = 1;
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400671 strbuf_splice(&buf2,
672 ptr-buf2.buf + strlen(":refs/remotes/"),
673 strlen(rename.old), rename.new,
674 strlen(rename.new));
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400675 } else
Ralf Thielowaa3bb872012-05-18 18:46:01 +0200676 warning(_("Not updating non-default fetch refspec\n"
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700677 "\t%s\n"
678 "\tPlease update the configuration manually if necessary."),
Martin von Zweigbergk1822b862011-09-03 11:26:59 -0400679 buf2.buf);
680
Miklos Vajnabf984212008-11-03 19:26:18 +0100681 if (git_config_set_multivar(buf.buf, buf2.buf, "^$", 0))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700682 return error(_("Could not append '%s'"), buf.buf);
Miklos Vajnabf984212008-11-03 19:26:18 +0100683 }
684
685 read_branches();
686 for (i = 0; i < branch_list.nr; i++) {
687 struct string_list_item *item = branch_list.items + i;
688 struct branch_info *info = item->util;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500689 if (info->remote_name && !strcmp(info->remote_name, rename.old)) {
Miklos Vajnabf984212008-11-03 19:26:18 +0100690 strbuf_reset(&buf);
691 strbuf_addf(&buf, "branch.%s.remote", item->string);
692 if (git_config_set(buf.buf, rename.new)) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700693 return error(_("Could not set '%s'"), buf.buf);
Miklos Vajnabf984212008-11-03 19:26:18 +0100694 }
695 }
696 }
697
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400698 if (!refspec_updated)
699 return 0;
700
Miklos Vajnabf984212008-11-03 19:26:18 +0100701 /*
702 * First remove symrefs, then rename the rest, finally create
703 * the new symrefs.
704 */
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000705 for_each_ref(read_remote_branches, &rename);
Miklos Vajnabf984212008-11-03 19:26:18 +0100706 for (i = 0; i < remote_branches.nr; i++) {
707 struct string_list_item *item = remote_branches.items + i;
708 int flag = 0;
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000709 struct object_id oid;
Miklos Vajnabf984212008-11-03 19:26:18 +0100710
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000711 read_ref_full(item->string, RESOLVE_REF_READING, oid.hash, &flag);
Miklos Vajnabf984212008-11-03 19:26:18 +0100712 if (!(flag & REF_ISSYMREF))
713 continue;
714 if (delete_ref(item->string, NULL, REF_NODEREF))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700715 die(_("deleting '%s' failed"), item->string);
Miklos Vajnabf984212008-11-03 19:26:18 +0100716 }
717 for (i = 0; i < remote_branches.nr; i++) {
718 struct string_list_item *item = remote_branches.items + i;
719
720 if (item->util)
721 continue;
722 strbuf_reset(&buf);
723 strbuf_addstr(&buf, item->string);
724 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
725 rename.new, strlen(rename.new));
726 strbuf_reset(&buf2);
727 strbuf_addf(&buf2, "remote: renamed %s to %s",
728 item->string, buf.buf);
729 if (rename_ref(item->string, buf.buf, buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700730 die(_("renaming '%s' failed"), item->string);
Miklos Vajnabf984212008-11-03 19:26:18 +0100731 }
732 for (i = 0; i < remote_branches.nr; i++) {
733 struct string_list_item *item = remote_branches.items + i;
734
735 if (!item->util)
736 continue;
737 strbuf_reset(&buf);
738 strbuf_addstr(&buf, item->string);
739 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
740 rename.new, strlen(rename.new));
741 strbuf_reset(&buf2);
742 strbuf_addstr(&buf2, item->util);
743 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old),
744 rename.new, strlen(rename.new));
745 strbuf_reset(&buf3);
746 strbuf_addf(&buf3, "remote: renamed %s to %s",
747 item->string, buf.buf);
748 if (create_symref(buf.buf, buf2.buf, buf3.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700749 die(_("creating '%s' failed"), buf.buf);
Miklos Vajnabf984212008-11-03 19:26:18 +0100750 }
751 return 0;
752}
753
Johannes Schindelin211c8962008-02-29 01:45:45 +0000754static int rm(int argc, const char **argv)
755{
756 struct option options[] = {
757 OPT_END()
758 };
759 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500760 struct strbuf buf = STRBUF_INIT;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400761 struct known_remotes known_remotes = { NULL, NULL };
Thiago Farina183113a2010-07-04 16:46:19 -0300762 struct string_list branches = STRING_LIST_INIT_DUP;
763 struct string_list skipped = STRING_LIST_INIT_DUP;
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000764 struct branches_for_remote cb_data;
Jay Soffiane02f1762009-02-03 12:51:12 -0500765 int i, result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000766
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000767 memset(&cb_data, 0, sizeof(cb_data));
768 cb_data.branches = &branches;
769 cb_data.skipped = &skipped;
770 cb_data.keep = &known_remotes;
771
Johannes Schindelin211c8962008-02-29 01:45:45 +0000772 if (argc != 2)
Tim Henigan45041072009-11-20 18:43:13 -0500773 usage_with_options(builtin_remote_rm_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000774
775 remote = remote_get(argv[1]);
776 if (!remote)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700777 die(_("No such remote: %s"), argv[1]);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000778
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400779 known_remotes.to_delete = remote;
780 for_each_remote(add_known_remote, &known_remotes);
781
Johannes Schindelin211c8962008-02-29 01:45:45 +0000782 read_branches();
783 for (i = 0; i < branch_list.nr; i++) {
Johannes Schindelinc455c872008-07-21 19:03:49 +0100784 struct string_list_item *item = branch_list.items + i;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000785 struct branch_info *info = item->util;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500786 if (info->remote_name && !strcmp(info->remote_name, remote->name)) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000787 const char *keys[] = { "remote", "merge", NULL }, **k;
788 for (k = keys; *k; k++) {
789 strbuf_reset(&buf);
790 strbuf_addf(&buf, "branch.%s.%s",
Johannes Schindelinc455c872008-07-21 19:03:49 +0100791 item->string, *k);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000792 if (git_config_set(buf.buf, NULL)) {
793 strbuf_release(&buf);
794 return -1;
795 }
796 }
797 }
798 }
799
800 /*
801 * We cannot just pass a function to for_each_ref() which deletes
802 * the branches one by one, since for_each_ref() relies on cached
803 * refs, which are invalidated when deleting a branch.
804 */
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400805 cb_data.remote = remote;
Michael Haggerty45690a52015-05-25 18:38:41 +0000806 result = for_each_ref(add_branch_for_removal, &cb_data);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000807 strbuf_release(&buf);
808
Jay Soffiane02f1762009-02-03 12:51:12 -0500809 if (!result)
Michael Haggerty98ffd5f2015-06-22 16:02:55 +0200810 result = delete_refs(&branches);
Michael Haggertye26cdf92015-05-25 18:38:42 +0000811 string_list_clear(&branches, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000812
Jay Soffian441adf02009-02-04 11:06:07 -0500813 if (skipped.nr) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700814 fprintf_ln(stderr,
815 Q_("Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"
816 "to delete it, use:",
817 "Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"
818 "to delete them, use:",
819 skipped.nr));
Jay Soffian441adf02009-02-04 11:06:07 -0500820 for (i = 0; i < skipped.nr; i++)
821 fprintf(stderr, " git branch -d %s\n",
822 skipped.items[i].string);
823 }
824 string_list_clear(&skipped, 0);
825
Jens Lindströmb07bdd32014-05-23 12:28:43 +0200826 if (!result) {
827 strbuf_addf(&buf, "remote.%s", remote->name);
828 if (git_config_rename_section(buf.buf, NULL) < 1)
829 return error(_("Could not remove config section '%s'"), buf.buf);
830 }
831
Jay Soffiane02f1762009-02-03 12:51:12 -0500832 return result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000833}
834
Linus Torvalds2af202b2009-06-18 10:28:43 -0700835static void clear_push_info(void *util, const char *string)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000836{
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500837 struct push_info *info = util;
838 free(info->dest);
839 free(info);
840}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000841
Jay Soffian88733232009-02-25 03:32:19 -0500842static void free_remote_ref_states(struct ref_states *states)
843{
844 string_list_clear(&states->new, 0);
Bert Wesarg92f676f2009-12-01 00:57:27 +0100845 string_list_clear(&states->stale, 1);
Jay Soffian88733232009-02-25 03:32:19 -0500846 string_list_clear(&states->tracked, 0);
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500847 string_list_clear(&states->heads, 0);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500848 string_list_clear_func(&states->push, clear_push_info);
Jay Soffian88733232009-02-25 03:32:19 -0500849}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000850
Jay Soffiancca7c972009-02-25 03:32:22 -0500851static int append_ref_to_tracked_list(const char *refname,
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000852 const struct object_id *oid, int flags, void *cb_data)
Jay Soffiancca7c972009-02-25 03:32:22 -0500853{
854 struct ref_states *states = cb_data;
855 struct refspec refspec;
856
Jay Soffian3bd92562009-02-25 03:32:23 -0500857 if (flags & REF_ISSYMREF)
858 return 0;
859
Jay Soffiancca7c972009-02-25 03:32:22 -0500860 memset(&refspec, 0, sizeof(refspec));
861 refspec.dst = (char *)refname;
862 if (!remote_find_tracking(states->remote, &refspec))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100863 string_list_append(&states->tracked, abbrev_branch(refspec.src));
Jay Soffiancca7c972009-02-25 03:32:22 -0500864
865 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000866}
867
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200868static int get_remote_ref_states(const char *name,
869 struct ref_states *states,
870 int query)
871{
872 struct transport *transport;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500873 const struct ref *remote_refs;
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200874
875 states->remote = remote_get(name);
876 if (!states->remote)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700877 return error(_("No such remote: %s"), name);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200878
879 read_branches();
880
881 if (query) {
Chris Frey345a3802009-06-25 17:21:35 -0400882 transport = transport_get(states->remote, states->remote->url_nr > 0 ?
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200883 states->remote->url[0] : NULL);
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500884 remote_refs = transport_get_remote_refs(transport);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200885 transport_disconnect(transport);
886
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500887 states->queried = 1;
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500888 if (query & GET_REF_STATES)
889 get_ref_states(remote_refs, states);
890 if (query & GET_HEAD_NAMES)
891 get_head_names(remote_refs, states);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500892 if (query & GET_PUSH_REF_STATES)
893 get_push_ref_states(remote_refs, states);
Jay Soffian3bd92562009-02-25 03:32:23 -0500894 } else {
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000895 for_each_ref(append_ref_to_tracked_list, states);
Michael Haggerty3383e192014-11-25 09:02:35 +0100896 string_list_sort(&states->tracked);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500897 get_push_ref_states_noquery(states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200898 }
899
900 return 0;
901}
902
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500903struct show_info {
904 struct string_list *list;
905 struct ref_states *states;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500906 int width, width2;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500907 int any_rebase;
908};
909
Linus Torvalds2af202b2009-06-18 10:28:43 -0700910static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
Olivier Marine7d5a972008-06-11 00:54:49 +0200911{
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500912 struct show_info *info = cb_data;
913 int n = strlen(item->string);
914 if (n > info->width)
915 info->width = n;
Julian Phillips78a395d2010-06-26 00:41:35 +0100916 string_list_insert(info->list, item->string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500917 return 0;
918}
Olivier Marine7d5a972008-06-11 00:54:49 +0200919
Linus Torvalds2af202b2009-06-18 10:28:43 -0700920static int show_remote_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500921{
922 struct show_info *info = cb_data;
923 struct ref_states *states = info->states;
924 const char *name = item->string;
Olivier Marine7d5a972008-06-11 00:54:49 +0200925
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500926 if (states->queried) {
927 const char *fmt = "%s";
928 const char *arg = "";
929 if (string_list_has_string(&states->new, name)) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700930 fmt = _(" new (next fetch will store in remotes/%s)");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500931 arg = states->remote->name;
932 } else if (string_list_has_string(&states->tracked, name))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700933 arg = _(" tracked");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500934 else if (string_list_has_string(&states->stale, name))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700935 arg = _(" stale (use 'git remote prune' to remove)");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500936 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700937 arg = _(" ???");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500938 printf(" %-*s", info->width, name);
939 printf(fmt, arg);
940 printf("\n");
941 } else
942 printf(" %s\n", name);
943
944 return 0;
945}
946
Linus Torvalds2af202b2009-06-18 10:28:43 -0700947static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500948{
949 struct show_info *show_info = cb_data;
950 struct ref_states *states = show_info->states;
951 struct branch_info *branch_info = branch_item->util;
952 struct string_list_item *item;
953 int n;
954
955 if (!branch_info->merge.nr || !branch_info->remote_name ||
956 strcmp(states->remote->name, branch_info->remote_name))
957 return 0;
958 if ((n = strlen(branch_item->string)) > show_info->width)
959 show_info->width = n;
960 if (branch_info->rebase)
961 show_info->any_rebase = 1;
962
Julian Phillips78a395d2010-06-26 00:41:35 +0100963 item = string_list_insert(show_info->list, branch_item->string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500964 item->util = branch_info;
965
966 return 0;
967}
968
Linus Torvalds2af202b2009-06-18 10:28:43 -0700969static int show_local_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500970{
971 struct show_info *show_info = cb_data;
972 struct branch_info *branch_info = item->util;
973 struct string_list *merge = &branch_info->merge;
974 const char *also;
975 int i;
976
977 if (branch_info->rebase && branch_info->merge.nr > 1) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700978 error(_("invalid branch.%s.merge; cannot rebase onto > 1 branch"),
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500979 item->string);
980 return 0;
981 }
982
983 printf(" %-*s ", show_info->width, item->string);
984 if (branch_info->rebase) {
Johannes Schindelinb5496d42016-01-13 13:17:19 +0100985 printf_ln(_(branch_info->rebase == INTERACTIVE_REBASE ?
986 "rebases interactively onto remote %s" :
987 "rebases onto remote %s"), merge->items[0].string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500988 return 0;
989 } else if (show_info->any_rebase) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700990 printf_ln(_(" merges with remote %s"), merge->items[0].string);
991 also = _(" and with remote");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500992 } else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700993 printf_ln(_("merges with remote %s"), merge->items[0].string);
994 also = _(" and with remote");
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500995 }
996 for (i = 1; i < merge->nr; i++)
997 printf(" %-*s %s %s\n", show_info->width, "", also,
998 merge->items[i].string);
999
1000 return 0;
1001}
1002
Linus Torvalds2af202b2009-06-18 10:28:43 -07001003static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001004{
1005 struct show_info *show_info = cb_data;
1006 struct push_info *push_info = push_item->util;
1007 struct string_list_item *item;
1008 int n;
1009 if ((n = strlen(push_item->string)) > show_info->width)
1010 show_info->width = n;
1011 if ((n = strlen(push_info->dest)) > show_info->width2)
1012 show_info->width2 = n;
Julian Phillips1d2f80f2010-06-26 00:41:38 +01001013 item = string_list_append(show_info->list, push_item->string);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001014 item->util = push_item->util;
1015 return 0;
1016}
1017
Jeff King48ef5632009-03-22 04:59:20 -04001018/*
1019 * Sorting comparison for a string list that has push_info
1020 * structs in its util field
1021 */
1022static int cmp_string_with_push(const void *va, const void *vb)
1023{
1024 const struct string_list_item *a = va;
1025 const struct string_list_item *b = vb;
1026 const struct push_info *a_push = a->util;
1027 const struct push_info *b_push = b->util;
1028 int cmp = strcmp(a->string, b->string);
1029 return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
1030}
1031
Linus Torvalds2af202b2009-06-18 10:28:43 -07001032static int show_push_info_item(struct string_list_item *item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001033{
1034 struct show_info *show_info = cb_data;
1035 struct push_info *push_info = item->util;
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001036 const char *src = item->string, *status = NULL;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001037
1038 switch (push_info->status) {
1039 case PUSH_STATUS_CREATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001040 status = _("create");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001041 break;
1042 case PUSH_STATUS_DELETE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001043 status = _("delete");
1044 src = _("(none)");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001045 break;
1046 case PUSH_STATUS_UPTODATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001047 status = _("up to date");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001048 break;
1049 case PUSH_STATUS_FASTFORWARD:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001050 status = _("fast-forwardable");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001051 break;
1052 case PUSH_STATUS_OUTOFDATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001053 status = _("local out of date");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001054 break;
1055 case PUSH_STATUS_NOTQUERIED:
1056 break;
1057 }
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001058 if (status) {
1059 if (push_info->forced)
1060 printf_ln(_(" %-*s forces to %-*s (%s)"), show_info->width, src,
1061 show_info->width2, push_info->dest, status);
1062 else
1063 printf_ln(_(" %-*s pushes to %-*s (%s)"), show_info->width, src,
1064 show_info->width2, push_info->dest, status);
1065 } else {
1066 if (push_info->forced)
1067 printf_ln(_(" %-*s forces to %s"), show_info->width, src,
1068 push_info->dest);
1069 else
1070 printf_ln(_(" %-*s pushes to %s"), show_info->width, src,
1071 push_info->dest);
1072 }
Olivier Marine7d5a972008-06-11 00:54:49 +02001073 return 0;
1074}
1075
Michael Haggertyce2223f2013-10-30 06:33:02 +01001076static int get_one_entry(struct remote *remote, void *priv)
1077{
1078 struct string_list *list = priv;
1079 struct strbuf url_buf = STRBUF_INIT;
1080 const char **url;
1081 int i, url_nr;
1082
1083 if (remote->url_nr > 0) {
1084 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1085 string_list_append(list, remote->name)->util =
1086 strbuf_detach(&url_buf, NULL);
1087 } else
1088 string_list_append(list, remote->name)->util = NULL;
1089 if (remote->pushurl_nr) {
1090 url = remote->pushurl;
1091 url_nr = remote->pushurl_nr;
1092 } else {
1093 url = remote->url;
1094 url_nr = remote->url_nr;
1095 }
1096 for (i = 0; i < url_nr; i++)
1097 {
1098 strbuf_addf(&url_buf, "%s (push)", url[i]);
1099 string_list_append(list, remote->name)->util =
1100 strbuf_detach(&url_buf, NULL);
1101 }
1102
1103 return 0;
1104}
1105
1106static int show_all(void)
1107{
1108 struct string_list list = STRING_LIST_INIT_NODUP;
1109 int result;
1110
1111 list.strdup_strings = 1;
1112 result = for_each_remote(get_one_entry, &list);
1113
1114 if (!result) {
1115 int i;
1116
Michael Haggerty3383e192014-11-25 09:02:35 +01001117 string_list_sort(&list);
Michael Haggertyce2223f2013-10-30 06:33:02 +01001118 for (i = 0; i < list.nr; i++) {
1119 struct string_list_item *item = list.items + i;
1120 if (verbose)
1121 printf("%s\t%s\n", item->string,
1122 item->util ? (const char *)item->util : "");
1123 else {
1124 if (i && !strcmp((item - 1)->string, item->string))
1125 continue;
1126 printf("%s\n", item->string);
1127 }
1128 }
1129 }
1130 string_list_clear(&list, 1);
1131 return result;
1132}
1133
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001134static int show(int argc, const char **argv)
Johannes Schindelin211c8962008-02-29 01:45:45 +00001135{
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001136 int no_query = 0, result = 0, query_flag = 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001137 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001138 OPT_BOOL('n', NULL, &no_query, N_("do not query remotes")),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001139 OPT_END()
1140 };
1141 struct ref_states states;
Thiago Farina183113a2010-07-04 16:46:19 -03001142 struct string_list info_list = STRING_LIST_INIT_NODUP;
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001143 struct show_info info;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001144
Tim Henigan45041072009-11-20 18:43:13 -05001145 argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001146 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001147
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001148 if (argc < 1)
1149 return show_all();
Johannes Schindelin211c8962008-02-29 01:45:45 +00001150
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001151 if (!no_query)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001152 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001153
Johannes Schindelin211c8962008-02-29 01:45:45 +00001154 memset(&states, 0, sizeof(states));
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001155 memset(&info, 0, sizeof(info));
1156 info.states = &states;
1157 info.list = &info_list;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001158 for (; argc; argc--, argv++) {
Olivier Marin0ecfcb32008-06-10 16:51:08 +02001159 int i;
Michael J Gruber857f8c32009-06-13 18:29:10 +02001160 const char **url;
1161 int url_nr;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001162
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001163 get_remote_ref_states(*argv, &states, query_flag);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001164
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001165 printf_ln(_("* remote %s"), *argv);
1166 printf_ln(_(" Fetch URL: %s"), states.remote->url_nr > 0 ?
1167 states.remote->url[0] : _("(no URL)"));
Michael J Gruber857f8c32009-06-13 18:29:10 +02001168 if (states.remote->pushurl_nr) {
1169 url = states.remote->pushurl;
1170 url_nr = states.remote->pushurl_nr;
1171 } else {
1172 url = states.remote->url;
1173 url_nr = states.remote->url_nr;
1174 }
Junio C Hamanocd2b8ae2011-08-25 14:46:52 -07001175 for (i = 0; i < url_nr; i++)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001176 printf_ln(_(" Push URL: %s"), url[i]);
Michael J Gruber857f8c32009-06-13 18:29:10 +02001177 if (!i)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001178 printf_ln(_(" Push URL: %s"), "(no URL)");
Olivier Marine7d5a972008-06-11 00:54:49 +02001179 if (no_query)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001180 printf_ln(_(" HEAD branch: %s"), "(not queried)");
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001181 else if (!states.heads.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001182 printf_ln(_(" HEAD branch: %s"), "(unknown)");
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001183 else if (states.heads.nr == 1)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001184 printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001185 else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001186 printf(_(" HEAD branch (remote HEAD is ambiguous,"
1187 " may be one of the following):\n"));
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001188 for (i = 0; i < states.heads.nr; i++)
1189 printf(" %s\n", states.heads.items[i].string);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001190 }
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001191
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001192 /* remote branch info */
1193 info.width = 0;
Julian Phillipsb684e972010-06-26 00:41:34 +01001194 for_each_string_list(&states.new, add_remote_to_show_info, &info);
1195 for_each_string_list(&states.tracked, add_remote_to_show_info, &info);
1196 for_each_string_list(&states.stale, add_remote_to_show_info, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001197 if (info.list->nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001198 printf_ln(Q_(" Remote branch:%s",
1199 " Remote branches:%s",
1200 info.list->nr),
1201 no_query ? _(" (status not queried)") : "");
Julian Phillipsb684e972010-06-26 00:41:34 +01001202 for_each_string_list(info.list, show_remote_info_item, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001203 string_list_clear(info.list, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001204
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001205 /* git pull info */
1206 info.width = 0;
1207 info.any_rebase = 0;
Julian Phillipsb684e972010-06-26 00:41:34 +01001208 for_each_string_list(&branch_list, add_local_to_show_info, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001209 if (info.list->nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001210 printf_ln(Q_(" Local branch configured for 'git pull':",
1211 " Local branches configured for 'git pull':",
1212 info.list->nr));
Julian Phillipsb684e972010-06-26 00:41:34 +01001213 for_each_string_list(info.list, show_local_info_item, &info);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001214 string_list_clear(info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001215
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001216 /* git push info */
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001217 if (states.remote->mirror)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001218 printf_ln(_(" Local refs will be mirrored by 'git push'"));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001219
1220 info.width = info.width2 = 0;
Julian Phillipsb684e972010-06-26 00:41:34 +01001221 for_each_string_list(&states.push, add_push_to_show_info, &info);
Jeff King48ef5632009-03-22 04:59:20 -04001222 qsort(info.list->items, info.list->nr,
1223 sizeof(*info.list->items), cmp_string_with_push);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001224 if (info.list->nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001225 printf_ln(Q_(" Local ref configured for 'git push'%s:",
1226 " Local refs configured for 'git push'%s:",
1227 info.list->nr),
1228 no_query ? _(" (status not queried)") : "");
Julian Phillipsb684e972010-06-26 00:41:34 +01001229 for_each_string_list(info.list, show_push_info_item, &info);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001230 string_list_clear(info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001231
Jay Soffian88733232009-02-25 03:32:19 -05001232 free_remote_ref_states(&states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001233 }
1234
1235 return result;
1236}
1237
Jay Soffianbc14fac2009-02-25 03:32:25 -05001238static int set_head(int argc, const char **argv)
1239{
1240 int i, opt_a = 0, opt_d = 0, result = 0;
1241 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1242 char *head_name = NULL;
1243
1244 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001245 OPT_BOOL('a', "auto", &opt_a,
1246 N_("set refs/remotes/<name>/HEAD according to remote")),
1247 OPT_BOOL('d', "delete", &opt_d,
1248 N_("delete refs/remotes/<name>/HEAD")),
Jay Soffianbc14fac2009-02-25 03:32:25 -05001249 OPT_END()
1250 };
Tim Henigan45041072009-11-20 18:43:13 -05001251 argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001252 0);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001253 if (argc)
1254 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1255
1256 if (!opt_a && !opt_d && argc == 2) {
1257 head_name = xstrdup(argv[1]);
1258 } else if (opt_a && !opt_d && argc == 1) {
1259 struct ref_states states;
1260 memset(&states, 0, sizeof(states));
1261 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1262 if (!states.heads.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001263 result |= error(_("Cannot determine remote HEAD"));
Jay Soffianbc14fac2009-02-25 03:32:25 -05001264 else if (states.heads.nr > 1) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001265 result |= error(_("Multiple remote HEAD branches. "
1266 "Please choose one explicitly with:"));
Jay Soffianbc14fac2009-02-25 03:32:25 -05001267 for (i = 0; i < states.heads.nr; i++)
1268 fprintf(stderr, " git remote set-head %s %s\n",
1269 argv[0], states.heads.items[i].string);
1270 } else
1271 head_name = xstrdup(states.heads.items[0].string);
1272 free_remote_ref_states(&states);
1273 } else if (opt_d && !opt_a && argc == 1) {
1274 if (delete_ref(buf.buf, NULL, REF_NODEREF))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001275 result |= error(_("Could not delete %s"), buf.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001276 } else
Tim Henigan45041072009-11-20 18:43:13 -05001277 usage_with_options(builtin_remote_sethead_usage, options);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001278
1279 if (head_name) {
Jay Soffianbc14fac2009-02-25 03:32:25 -05001280 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1281 /* make sure it's valid */
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +07001282 if (!ref_exists(buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001283 result |= error(_("Not a valid ref: %s"), buf2.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001284 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001285 result |= error(_("Could not setup %s"), buf.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001286 if (opt_a)
1287 printf("%s/HEAD set to %s\n", argv[0], head_name);
1288 free(head_name);
1289 }
1290
1291 strbuf_release(&buf);
1292 strbuf_release(&buf2);
1293 return result;
1294}
1295
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001296static int prune_remote(const char *remote, int dry_run)
1297{
Michael Haggerty85529432014-11-25 09:02:34 +01001298 int result = 0;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001299 struct ref_states states;
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001300 struct string_list refs_to_prune = STRING_LIST_INIT_NODUP;
Michael Haggerty85529432014-11-25 09:02:34 +01001301 struct string_list_item *item;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001302 const char *dangling_msg = dry_run
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001303 ? _(" %s will become dangling!")
1304 : _(" %s has become dangling!");
Junio C Hamanof8948e22009-02-08 23:27:10 -08001305
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001306 memset(&states, 0, sizeof(states));
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001307 get_remote_ref_states(remote, &states, GET_REF_STATES);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001308
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001309 if (!states.stale.nr) {
1310 free_remote_ref_states(&states);
1311 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001312 }
1313
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001314 printf_ln(_("Pruning %s"), remote);
1315 printf_ln(_("URL: %s"),
1316 states.remote->url_nr
1317 ? states.remote->url[0]
1318 : _("(no URL)"));
1319
Michael Haggerty85529432014-11-25 09:02:34 +01001320 for_each_string_list_item(item, &states.stale)
1321 string_list_append(&refs_to_prune, item->util);
Michael Haggerty3383e192014-11-25 09:02:35 +01001322 string_list_sort(&refs_to_prune);
Michael Haggerty28d3f212014-11-25 09:02:30 +01001323
Michael Haggertya1223662015-06-22 16:02:58 +02001324 if (!dry_run)
1325 result |= delete_refs(&refs_to_prune);
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001326
Michael Haggerty85529432014-11-25 09:02:34 +01001327 for_each_string_list_item(item, &states.stale) {
1328 const char *refname = item->util;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001329
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001330 if (dry_run)
1331 printf_ln(_(" * [would prune] %s"),
1332 abbrev_ref(refname, "refs/remotes/"));
1333 else
1334 printf_ln(_(" * [pruned] %s"),
1335 abbrev_ref(refname, "refs/remotes/"));
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001336 }
1337
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001338 warn_dangling_symrefs(stdout, dangling_msg, &refs_to_prune);
Jens Lindströme6bea662014-05-23 12:30:25 +02001339
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001340 string_list_clear(&refs_to_prune, 0);
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001341 free_remote_ref_states(&states);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001342 return result;
1343}
1344
Michael Haggertyce2223f2013-10-30 06:33:02 +01001345static int prune(int argc, const char **argv)
1346{
1347 int dry_run = 0, result = 0;
1348 struct option options[] = {
1349 OPT__DRY_RUN(&dry_run, N_("dry run")),
1350 OPT_END()
1351 };
1352
1353 argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
1354 0);
1355
1356 if (argc < 1)
1357 usage_with_options(builtin_remote_prune_usage, options);
1358
1359 for (; argc; argc--, argv++)
1360 result |= prune_remote(*argv, dry_run);
1361
1362 return result;
1363}
1364
Björn Gustavsson8db35592009-11-10 09:21:32 +01001365static int get_remote_default(const char *key, const char *value, void *priv)
Johannes Schindelin211c8962008-02-29 01:45:45 +00001366{
Björn Gustavsson8db35592009-11-10 09:21:32 +01001367 if (strcmp(key, "remotes.default") == 0) {
1368 int *found = priv;
1369 *found = 1;
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001370 }
Johannes Schindelin211c8962008-02-29 01:45:45 +00001371 return 0;
1372}
1373
1374static int update(int argc, const char **argv)
1375{
Michael Haggerty90765fa2013-10-30 06:33:04 +01001376 int i, prune = -1;
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001377 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001378 OPT_BOOL('p', "prune", &prune,
1379 N_("prune remotes after fetching")),
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001380 OPT_END()
1381 };
Michael Haggerty86075902013-10-30 06:33:03 +01001382 struct argv_array fetch_argv = ARGV_ARRAY_INIT;
Björn Gustavsson8db35592009-11-10 09:21:32 +01001383 int default_defined = 0;
Michael Haggerty86075902013-10-30 06:33:03 +01001384 int retval;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001385
Tim Henigan45041072009-11-20 18:43:13 -05001386 argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001387 PARSE_OPT_KEEP_ARGV0);
Björn Gustavsson8db35592009-11-10 09:21:32 +01001388
Michael Haggerty86075902013-10-30 06:33:03 +01001389 argv_array_push(&fetch_argv, "fetch");
Björn Gustavsson8db35592009-11-10 09:21:32 +01001390
Michael Haggerty90765fa2013-10-30 06:33:04 +01001391 if (prune != -1)
1392 argv_array_push(&fetch_argv, prune ? "--prune" : "--no-prune");
Björn Gustavsson8db35592009-11-10 09:21:32 +01001393 if (verbose)
Michael Haggerty86075902013-10-30 06:33:03 +01001394 argv_array_push(&fetch_argv, "-v");
1395 argv_array_push(&fetch_argv, "--multiple");
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001396 if (argc < 2)
Michael Haggerty86075902013-10-30 06:33:03 +01001397 argv_array_push(&fetch_argv, "default");
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001398 for (i = 1; i < argc; i++)
Michael Haggerty86075902013-10-30 06:33:03 +01001399 argv_array_push(&fetch_argv, argv[i]);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001400
Michael Haggerty86075902013-10-30 06:33:03 +01001401 if (strcmp(fetch_argv.argv[fetch_argv.argc-1], "default") == 0) {
Björn Gustavsson8db35592009-11-10 09:21:32 +01001402 git_config(get_remote_default, &default_defined);
Michael Haggerty86075902013-10-30 06:33:03 +01001403 if (!default_defined) {
1404 argv_array_pop(&fetch_argv);
1405 argv_array_push(&fetch_argv, "--all");
1406 }
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001407 }
1408
Michael Haggerty86075902013-10-30 06:33:03 +01001409 retval = run_command_v_opt(fetch_argv.argv, RUN_GIT_CMD);
1410 argv_array_clear(&fetch_argv);
1411 return retval;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001412}
1413
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001414static int remove_all_fetch_refspecs(const char *remote, const char *key)
1415{
1416 return git_config_set_multivar(key, NULL, NULL, 1);
1417}
1418
1419static int add_branches(struct remote *remote, const char **branches,
1420 const char *key)
1421{
1422 const char *remotename = remote->name;
1423 int mirror = remote->mirror;
1424 struct strbuf refspec = STRBUF_INIT;
1425
1426 for (; *branches; branches++)
1427 if (add_branch(key, *branches, remotename, mirror, &refspec)) {
1428 strbuf_release(&refspec);
1429 return 1;
1430 }
1431
1432 strbuf_release(&refspec);
1433 return 0;
1434}
1435
1436static int set_remote_branches(const char *remotename, const char **branches,
1437 int add_mode)
1438{
1439 struct strbuf key = STRBUF_INIT;
1440 struct remote *remote;
1441
1442 strbuf_addf(&key, "remote.%s.fetch", remotename);
1443
1444 if (!remote_is_configured(remotename))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001445 die(_("No such remote '%s'"), remotename);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001446 remote = remote_get(remotename);
1447
1448 if (!add_mode && remove_all_fetch_refspecs(remotename, key.buf)) {
1449 strbuf_release(&key);
1450 return 1;
1451 }
1452 if (add_branches(remote, branches, key.buf)) {
1453 strbuf_release(&key);
1454 return 1;
1455 }
1456
1457 strbuf_release(&key);
1458 return 0;
1459}
1460
1461static int set_branches(int argc, const char **argv)
1462{
1463 int add_mode = 0;
1464 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001465 OPT_BOOL('\0', "add", &add_mode, N_("add branch")),
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001466 OPT_END()
1467 };
1468
1469 argc = parse_options(argc, argv, NULL, options,
1470 builtin_remote_setbranches_usage, 0);
1471 if (argc == 0) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001472 error(_("no remote specified"));
Junio C Hamano656cdf02011-11-06 21:12:59 -08001473 usage_with_options(builtin_remote_setbranches_usage, options);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001474 }
1475 argv[argc] = NULL;
1476
1477 return set_remote_branches(argv[0], argv + 1, add_mode);
1478}
1479
Ben Boeckel96f78d32015-09-15 21:53:47 -04001480static int get_url(int argc, const char **argv)
1481{
1482 int i, push_mode = 0, all_mode = 0;
1483 const char *remotename = NULL;
1484 struct remote *remote;
1485 const char **url;
1486 int url_nr;
1487 struct option options[] = {
1488 OPT_BOOL('\0', "push", &push_mode,
1489 N_("query push URLs rather than fetch URLs")),
1490 OPT_BOOL('\0', "all", &all_mode,
1491 N_("return all URLs")),
1492 OPT_END()
1493 };
1494 argc = parse_options(argc, argv, NULL, options, builtin_remote_geturl_usage, 0);
1495
1496 if (argc != 1)
1497 usage_with_options(builtin_remote_geturl_usage, options);
1498
1499 remotename = argv[0];
1500
1501 if (!remote_is_configured(remotename))
1502 die(_("No such remote '%s'"), remotename);
1503 remote = remote_get(remotename);
1504
1505 url_nr = 0;
1506 if (push_mode) {
1507 url = remote->pushurl;
1508 url_nr = remote->pushurl_nr;
1509 }
1510 /* else fetch mode */
1511
1512 /* Use the fetch URL when no push URLs were found or requested. */
1513 if (!url_nr) {
1514 url = remote->url;
1515 url_nr = remote->url_nr;
1516 }
1517
1518 if (!url_nr)
1519 die(_("no URLs configured for remote '%s'"), remotename);
1520
1521 if (all_mode) {
1522 for (i = 0; i < url_nr; i++)
1523 printf_ln("%s", url[i]);
1524 } else {
1525 printf_ln("%s", *url);
1526 }
1527
1528 return 0;
1529}
1530
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001531static int set_url(int argc, const char **argv)
1532{
1533 int i, push_mode = 0, add_mode = 0, delete_mode = 0;
1534 int matches = 0, negative_matches = 0;
1535 const char *remotename = NULL;
1536 const char *newurl = NULL;
1537 const char *oldurl = NULL;
1538 struct remote *remote;
1539 regex_t old_regex;
1540 const char **urlset;
1541 int urlset_nr;
1542 struct strbuf name_buf = STRBUF_INIT;
1543 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001544 OPT_BOOL('\0', "push", &push_mode,
1545 N_("manipulate push URLs")),
1546 OPT_BOOL('\0', "add", &add_mode,
1547 N_("add URL")),
1548 OPT_BOOL('\0', "delete", &delete_mode,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +07001549 N_("delete URLs")),
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001550 OPT_END()
1551 };
Felipe Contrerasc49904e2011-11-07 05:36:57 +02001552 argc = parse_options(argc, argv, NULL, options, builtin_remote_seturl_usage,
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001553 PARSE_OPT_KEEP_ARGV0);
1554
1555 if (add_mode && delete_mode)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001556 die(_("--add --delete doesn't make sense"));
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001557
1558 if (argc < 3 || argc > 4 || ((add_mode || delete_mode) && argc != 3))
1559 usage_with_options(builtin_remote_seturl_usage, options);
1560
1561 remotename = argv[1];
1562 newurl = argv[2];
1563 if (argc > 3)
1564 oldurl = argv[3];
1565
1566 if (delete_mode)
1567 oldurl = newurl;
1568
1569 if (!remote_is_configured(remotename))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001570 die(_("No such remote '%s'"), remotename);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001571 remote = remote_get(remotename);
1572
1573 if (push_mode) {
1574 strbuf_addf(&name_buf, "remote.%s.pushurl", remotename);
1575 urlset = remote->pushurl;
1576 urlset_nr = remote->pushurl_nr;
1577 } else {
1578 strbuf_addf(&name_buf, "remote.%s.url", remotename);
1579 urlset = remote->url;
1580 urlset_nr = remote->url_nr;
1581 }
1582
1583 /* Special cases that add new entry. */
1584 if ((!oldurl && !delete_mode) || add_mode) {
1585 if (add_mode)
1586 git_config_set_multivar(name_buf.buf, newurl,
1587 "^$", 0);
1588 else
1589 git_config_set(name_buf.buf, newurl);
1590 strbuf_release(&name_buf);
1591 return 0;
1592 }
1593
1594 /* Old URL specified. Demand that one matches. */
1595 if (regcomp(&old_regex, oldurl, REG_EXTENDED))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001596 die(_("Invalid old URL pattern: %s"), oldurl);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001597
1598 for (i = 0; i < urlset_nr; i++)
1599 if (!regexec(&old_regex, urlset[i], 0, NULL, 0))
1600 matches++;
1601 else
1602 negative_matches++;
1603 if (!delete_mode && !matches)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001604 die(_("No such URL found: %s"), oldurl);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001605 if (delete_mode && !negative_matches && !push_mode)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001606 die(_("Will not delete all non-push URLs"));
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001607
1608 regfree(&old_regex);
1609
1610 if (!delete_mode)
1611 git_config_set_multivar(name_buf.buf, newurl, oldurl, 0);
1612 else
1613 git_config_set_multivar(name_buf.buf, NULL, oldurl, 1);
1614 return 0;
1615}
1616
Johannes Schindelin211c8962008-02-29 01:45:45 +00001617int cmd_remote(int argc, const char **argv, const char *prefix)
1618{
1619 struct option options[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +07001620 OPT__VERBOSE(&verbose, N_("be verbose; must be placed before a subcommand")),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001621 OPT_END()
1622 };
1623 int result;
1624
Stephen Boyd37782922009-05-23 11:53:12 -07001625 argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
Johannes Schindelin211c8962008-02-29 01:45:45 +00001626 PARSE_OPT_STOP_AT_NON_OPTION);
1627
1628 if (argc < 1)
1629 result = show_all();
1630 else if (!strcmp(argv[0], "add"))
1631 result = add(argc, argv);
Miklos Vajnabf984212008-11-03 19:26:18 +01001632 else if (!strcmp(argv[0], "rename"))
1633 result = mv(argc, argv);
Nguyễn Thái Ngọc Duye17dba82012-09-06 19:25:23 +07001634 else if (!strcmp(argv[0], "rm") || !strcmp(argv[0], "remove"))
Johannes Schindelin211c8962008-02-29 01:45:45 +00001635 result = rm(argc, argv);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001636 else if (!strcmp(argv[0], "set-head"))
1637 result = set_head(argc, argv);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001638 else if (!strcmp(argv[0], "set-branches"))
1639 result = set_branches(argc, argv);
Ben Boeckel96f78d32015-09-15 21:53:47 -04001640 else if (!strcmp(argv[0], "get-url"))
1641 result = get_url(argc, argv);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001642 else if (!strcmp(argv[0], "set-url"))
1643 result = set_url(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001644 else if (!strcmp(argv[0], "show"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001645 result = show(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001646 else if (!strcmp(argv[0], "prune"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001647 result = prune(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001648 else if (!strcmp(argv[0], "update"))
1649 result = update(argc, argv);
1650 else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001651 error(_("Unknown subcommand: %s"), argv[0]);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001652 usage_with_options(builtin_remote_usage, options);
1653 }
1654
1655 return result ? 1 : 0;
1656}