blob: 805a5171925eece5f14b17ae923e7e8d9fbb2cf3 [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"
Bert Wesarg88f85762020-01-27 08:04:27 +01009#include "rebase.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +000010#include "refs.h"
Brandon Williamsec0cb492018-05-16 15:57:48 -070011#include "refspec.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -070012#include "object-store.h"
Jeff Kingdbbcd442020-07-28 16:23:39 -040013#include "strvec.h"
Derrick Stolee1d614d42018-07-20 16:33:06 +000014#include "commit-reach.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +000015
16static const char * const builtin_remote_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070017 N_("git remote [-v | --verbose]"),
Alex Henrie9c9b4f22015-01-13 00:44:47 -070018 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 +070019 N_("git remote rename <old> <new>"),
Junio C Hamano90585602012-09-12 14:21:58 -070020 N_("git remote remove <name>"),
Alex Henrie9c9b4f22015-01-13 00:44:47 -070021 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070022 N_("git remote [-v | --verbose] show [-n] <name>"),
23 N_("git remote prune [-n | --dry-run] <name>"),
24 N_("git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"),
25 N_("git remote set-branches [--add] <name> <branch>..."),
Ben Boeckel96f78d32015-09-15 21:53:47 -040026 N_("git remote get-url [--push] [--all] <name>"),
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070027 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
28 N_("git remote set-url --add <name> <newurl>"),
29 N_("git remote set-url --delete <name> <url>"),
Johannes Schindelin211c8962008-02-29 01:45:45 +000030 NULL
31};
32
Tim Henigan45041072009-11-20 18:43:13 -050033static const char * const builtin_remote_add_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070034 N_("git remote add [<options>] <name> <url>"),
Tim Henigan45041072009-11-20 18:43:13 -050035 NULL
36};
37
38static const char * const builtin_remote_rename_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070039 N_("git remote rename <old> <new>"),
Tim Henigan45041072009-11-20 18:43:13 -050040 NULL
41};
42
43static const char * const builtin_remote_rm_usage[] = {
Junio C Hamano90585602012-09-12 14:21:58 -070044 N_("git remote remove <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050045 NULL
46};
47
48static const char * const builtin_remote_sethead_usage[] = {
Philip Oakleye49c8f32013-09-21 16:51:46 +010049 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
Tim Henigan45041072009-11-20 18:43:13 -050050 NULL
51};
52
Jonathan Nieder3d8b6942010-05-19 13:38:50 -050053static const char * const builtin_remote_setbranches_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070054 N_("git remote set-branches <name> <branch>..."),
55 N_("git remote set-branches --add <name> <branch>..."),
Jonathan Nieder3d8b6942010-05-19 13:38:50 -050056 NULL
57};
58
Tim Henigan45041072009-11-20 18:43:13 -050059static const char * const builtin_remote_show_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070060 N_("git remote show [<options>] <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050061 NULL
62};
63
64static const char * const builtin_remote_prune_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070065 N_("git remote prune [<options>] <name>"),
Tim Henigan45041072009-11-20 18:43:13 -050066 NULL
67};
68
69static const char * const builtin_remote_update_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070070 N_("git remote update [<options>] [<group> | <remote>]..."),
Tim Henigan45041072009-11-20 18:43:13 -050071 NULL
72};
73
Ben Boeckel96f78d32015-09-15 21:53:47 -040074static const char * const builtin_remote_geturl_usage[] = {
75 N_("git remote get-url [--push] [--all] <name>"),
76 NULL
77};
78
Ilari Liusvaara433f2be2010-01-18 19:18:02 +020079static const char * const builtin_remote_seturl_usage[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +070080 N_("git remote set-url [--push] <name> <newurl> [<oldurl>]"),
81 N_("git remote set-url --add <name> <newurl>"),
82 N_("git remote set-url --delete <name> <url>"),
Ilari Liusvaara433f2be2010-01-18 19:18:02 +020083 NULL
84};
85
Jay Soffiane61e0cc2009-02-25 03:32:24 -050086#define GET_REF_STATES (1<<0)
87#define GET_HEAD_NAMES (1<<1)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -050088#define GET_PUSH_REF_STATES (1<<2)
Jay Soffiane61e0cc2009-02-25 03:32:24 -050089
Johannes Schindelin211c8962008-02-29 01:45:45 +000090static int verbose;
91
Johannes Schindelin211c8962008-02-29 01:45:45 +000092static int fetch_remote(const char *name)
93{
Cheng Renquandbbd56f2008-11-18 19:04:02 +080094 const char *argv[] = { "fetch", name, NULL, NULL };
95 if (verbose) {
96 argv[1] = "-v";
97 argv[2] = name;
98 }
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +070099 printf_ln(_("Updating %s"), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000100 if (run_command_v_opt(argv, RUN_GIT_CMD))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700101 return error(_("Could not fetch %s"), name);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000102 return 0;
103}
104
Samuel Tardieu111fb852010-04-20 01:31:31 +0200105enum {
106 TAGS_UNSET = 0,
107 TAGS_DEFAULT = 1,
108 TAGS_SET = 2
109};
110
Jeff Kinga9f5a352011-03-30 15:53:19 -0400111#define MIRROR_NONE 0
112#define MIRROR_FETCH 1
113#define MIRROR_PUSH 2
114#define MIRROR_BOTH (MIRROR_FETCH|MIRROR_PUSH)
115
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +0100116static void add_branch(const char *key, const char *branchname,
117 const char *remotename, int mirror, struct strbuf *tmp)
Jonathan Nieder3d8b6942010-05-19 13:38:50 -0500118{
119 strbuf_reset(tmp);
120 strbuf_addch(tmp, '+');
121 if (mirror)
122 strbuf_addf(tmp, "refs/%s:refs/%s",
123 branchname, branchname);
124 else
125 strbuf_addf(tmp, "refs/heads/%s:refs/remotes/%s/%s",
126 branchname, remotename, branchname);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100127 git_config_set_multivar(key, tmp->buf, "^$", 0);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -0500128}
129
Jeff King09902482011-03-30 15:53:39 -0400130static const char mirror_advice[] =
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700131N_("--mirror is dangerous and deprecated; please\n"
132 "\t use --mirror=fetch or --mirror=push instead");
Jeff King09902482011-03-30 15:53:39 -0400133
Jeff Kinga9f5a352011-03-30 15:53:19 -0400134static int parse_mirror_opt(const struct option *opt, const char *arg, int not)
135{
136 unsigned *mirror = opt->value;
137 if (not)
138 *mirror = MIRROR_NONE;
Jeff King09902482011-03-30 15:53:39 -0400139 else if (!arg) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700140 warning("%s", _(mirror_advice));
Jeff Kinga9f5a352011-03-30 15:53:19 -0400141 *mirror = MIRROR_BOTH;
Jeff King09902482011-03-30 15:53:39 -0400142 }
Jeff Kinga9f5a352011-03-30 15:53:19 -0400143 else if (!strcmp(arg, "fetch"))
144 *mirror = MIRROR_FETCH;
145 else if (!strcmp(arg, "push"))
146 *mirror = MIRROR_PUSH;
147 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700148 return error(_("unknown mirror argument: %s"), arg);
Jeff Kinga9f5a352011-03-30 15:53:19 -0400149 return 0;
150}
151
Johannes Schindelin211c8962008-02-29 01:45:45 +0000152static int add(int argc, const char **argv)
153{
Jeff Kinga9f5a352011-03-30 15:53:19 -0400154 int fetch = 0, fetch_tags = TAGS_DEFAULT;
155 unsigned mirror = MIRROR_NONE;
Thiago Farina183113a2010-07-04 16:46:19 -0300156 struct string_list track = STRING_LIST_INIT_NODUP;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000157 const char *master = NULL;
158 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500159 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000160 const char *name, *url;
161 int i;
162
163 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200164 OPT_BOOL('f', "fetch", &fetch, N_("fetch the remote branches")),
Samuel Tardieu111fb852010-04-20 01:31:31 +0200165 OPT_SET_INT(0, "tags", &fetch_tags,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +0700166 N_("import all tags and associated objects when fetching"),
Samuel Tardieu111fb852010-04-20 01:31:31 +0200167 TAGS_SET),
168 OPT_SET_INT(0, NULL, &fetch_tags,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +0700169 N_("or do not fetch any tag at all (--no-tags)"), TAGS_UNSET),
170 OPT_STRING_LIST('t', "track", &track, N_("branch"),
171 N_("branch(es) to track")),
172 OPT_STRING('m', "master", &master, N_("branch"), N_("master branch")),
Denton Liu203c8532020-04-28 04:36:28 -0400173 OPT_CALLBACK_F(0, "mirror", &mirror, "(push|fetch)",
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +0700174 N_("set up remote as a mirror to push to or fetch from"),
Denton Liu203c8532020-04-28 04:36:28 -0400175 PARSE_OPT_OPTARG | PARSE_OPT_COMP_ARG, parse_mirror_opt),
Johannes Schindelin211c8962008-02-29 01:45:45 +0000176 OPT_END()
177 };
178
Tim Henigan45041072009-11-20 18:43:13 -0500179 argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
Stephen Boyd37782922009-05-23 11:53:12 -0700180 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000181
Thomas Rast2d2e3d22013-04-24 15:54:36 +0200182 if (argc != 2)
Tim Henigan45041072009-11-20 18:43:13 -0500183 usage_with_options(builtin_remote_add_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000184
Jeff King13fc2c12011-03-30 15:52:52 -0400185 if (mirror && master)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700186 die(_("specifying a master branch makes no sense with --mirror"));
Jeff King3eafdc92011-05-26 11:11:00 -0400187 if (mirror && !(mirror & MIRROR_FETCH) && track.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700188 die(_("specifying branches to track makes sense only with fetch mirrors"));
Jeff King13fc2c12011-03-30 15:52:52 -0400189
Johannes Schindelin211c8962008-02-29 01:45:45 +0000190 name = argv[0];
191 url = argv[1];
192
193 remote = remote_get(name);
Ævar Arnfjörð Bjarmason9144ba42020-10-27 10:41:36 +0100194 if (remote_is_configured(remote, 1)) {
195 error(_("remote %s already exists."), name);
196 exit(3);
197 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000198
Sean Baragf2c6fda2020-10-01 03:46:13 +0000199 if (!valid_remote_name(name))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700200 die(_("'%s' is not a valid remote name"), name);
Jonas Fonseca24b61772008-04-13 11:56:54 +0200201
Johannes Schindelin211c8962008-02-29 01:45:45 +0000202 strbuf_addf(&buf, "remote.%s.url", name);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100203 git_config_set(buf.buf, url);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000204
Jeff Kinga9f5a352011-03-30 15:53:19 -0400205 if (!mirror || mirror & MIRROR_FETCH) {
206 strbuf_reset(&buf);
207 strbuf_addf(&buf, "remote.%s.fetch", name);
208 if (track.nr == 0)
209 string_list_append(&track, "*");
210 for (i = 0; i < track.nr; i++) {
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +0100211 add_branch(buf.buf, track.items[i].string,
212 name, mirror, &buf2);
Jeff Kinga9f5a352011-03-30 15:53:19 -0400213 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000214 }
215
Jeff Kinga9f5a352011-03-30 15:53:19 -0400216 if (mirror & MIRROR_PUSH) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200217 strbuf_reset(&buf);
218 strbuf_addf(&buf, "remote.%s.mirror", name);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100219 git_config_set(buf.buf, "true");
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200220 }
221
Samuel Tardieu111fb852010-04-20 01:31:31 +0200222 if (fetch_tags != TAGS_DEFAULT) {
223 strbuf_reset(&buf);
Ævar Arnfjörð Bjarmasonbfa91482021-02-25 02:21:16 +0100224 strbuf_addf(&buf, "remote.%s.tagOpt", name);
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100225 git_config_set(buf.buf,
226 fetch_tags == TAGS_SET ? "--tags" : "--no-tags");
Samuel Tardieu111fb852010-04-20 01:31:31 +0200227 }
228
Johannes Schindelin211c8962008-02-29 01:45:45 +0000229 if (fetch && fetch_remote(name))
230 return 1;
231
232 if (master) {
233 strbuf_reset(&buf);
234 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
235
236 strbuf_reset(&buf2);
237 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
238
239 if (create_symref(buf.buf, buf2.buf, "remote add"))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700240 return error(_("Could not setup master '%s'"), master);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000241 }
242
243 strbuf_release(&buf);
244 strbuf_release(&buf2);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100245 string_list_clear(&track, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000246
247 return 0;
248}
249
250struct branch_info {
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500251 char *remote_name;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100252 struct string_list merge;
Bert Wesarg88f85762020-01-27 08:04:27 +0100253 enum rebase_type rebase;
Bert Wesarg923d4a52020-01-27 08:04:30 +0100254 char *push_remote_name;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000255};
256
Jeff King2721ce22016-06-13 06:04:20 -0400257static struct string_list branch_list = STRING_LIST_INIT_NODUP;
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{
Bert Wesarg1a830682020-01-27 08:04:28 +0100268 const char *orig_key = key;
269 char *name;
270 struct string_list_item *item;
271 struct branch_info *info;
Bert Wesarg923d4a52020-01-27 08:04:30 +0100272 enum { REMOTE, MERGE, REBASE, PUSH_REMOTE } type;
Bert Wesarg1a830682020-01-27 08:04:28 +0100273 size_t key_len;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000274
Bert Wesarg1a830682020-01-27 08:04:28 +0100275 if (!starts_with(key, "branch."))
276 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000277
Bert Wesargceff1a12020-01-27 08:04:29 +0100278 key += strlen("branch.");
279 if (strip_suffix(key, ".remote", &key_len))
Bert Wesarg1a830682020-01-27 08:04:28 +0100280 type = REMOTE;
Bert Wesargceff1a12020-01-27 08:04:29 +0100281 else if (strip_suffix(key, ".merge", &key_len))
Bert Wesarg1a830682020-01-27 08:04:28 +0100282 type = MERGE;
Bert Wesargceff1a12020-01-27 08:04:29 +0100283 else if (strip_suffix(key, ".rebase", &key_len))
Bert Wesarg1a830682020-01-27 08:04:28 +0100284 type = REBASE;
Bert Wesarg923d4a52020-01-27 08:04:30 +0100285 else if (strip_suffix(key, ".pushremote", &key_len))
286 type = PUSH_REMOTE;
Bert Wesargceff1a12020-01-27 08:04:29 +0100287 else
Bert Wesarg1a830682020-01-27 08:04:28 +0100288 return 0;
Bert Wesargceff1a12020-01-27 08:04:29 +0100289 name = xmemdupz(key, key_len);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000290
Bert Wesarg1a830682020-01-27 08:04:28 +0100291 item = string_list_insert(&branch_list, name);
292
293 if (!item->util)
294 item->util = xcalloc(1, sizeof(struct branch_info));
295 info = item->util;
Bert Wesargceff1a12020-01-27 08:04:29 +0100296 switch (type) {
297 case REMOTE:
Bert Wesarg1a830682020-01-27 08:04:28 +0100298 if (info->remote_name)
299 warning(_("more than one %s"), orig_key);
300 info->remote_name = xstrdup(value);
Bert Wesargceff1a12020-01-27 08:04:29 +0100301 break;
302 case MERGE: {
Bert Wesarg1a830682020-01-27 08:04:28 +0100303 char *space = strchr(value, ' ');
304 value = abbrev_branch(value);
305 while (space) {
306 char *merge;
307 merge = xstrndup(value, space - value);
308 string_list_append(&info->merge, merge);
309 value = abbrev_branch(space + 1);
310 space = strchr(value, ' ');
311 }
312 string_list_append(&info->merge, xstrdup(value));
Bert Wesargceff1a12020-01-27 08:04:29 +0100313 break;
314 }
315 case REBASE:
Bert Wesarg1a830682020-01-27 08:04:28 +0100316 /*
317 * Consider invalid values as false and check the
318 * truth value with >= REBASE_TRUE.
319 */
320 info->rebase = rebase_parse_value(value);
Johannes Schindelinab7c7c22021-09-07 21:05:03 +0000321 if (info->rebase == REBASE_INVALID)
322 warning(_("unhandled branch.%s.rebase=%s; assuming "
323 "'true'"), name, value);
Bert Wesargceff1a12020-01-27 08:04:29 +0100324 break;
Bert Wesarg923d4a52020-01-27 08:04:30 +0100325 case PUSH_REMOTE:
326 if (info->push_remote_name)
327 warning(_("more than one %s"), orig_key);
328 info->push_remote_name = xstrdup(value);
329 break;
Bert Wesargceff1a12020-01-27 08:04:29 +0100330 default:
331 BUG("unexpected type=%d", type);
332 }
Bert Wesarg1a830682020-01-27 08:04:28 +0100333
Johannes Schindelin211c8962008-02-29 01:45:45 +0000334 return 0;
335}
336
337static void read_branches(void)
338{
339 if (branch_list.nr)
340 return;
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100341 git_config(config_read_branches, NULL);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000342}
343
344struct ref_states {
345 struct remote *remote;
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800346 struct string_list new_refs, stale, tracked, heads, push;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500347 int queried;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000348};
349
Ævar Arnfjörð Bjarmason0bc77872021-10-01 12:27:34 +0200350#define REF_STATES_INIT { \
351 .new_refs = STRING_LIST_INIT_DUP, \
352 .stale = STRING_LIST_INIT_DUP, \
353 .tracked = STRING_LIST_INIT_DUP, \
354 .heads = STRING_LIST_INIT_DUP, \
355 .push = STRING_LIST_INIT_DUP, \
356}
357
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500358static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000359{
360 struct ref *fetch_map = NULL, **tail = &fetch_map;
Jay Soffianf2ef6072009-11-10 00:03:31 -0500361 struct ref *ref, *stale_refs;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000362 int i;
363
Brandon Williamse5349ab2018-05-16 15:58:01 -0700364 for (i = 0; i < states->remote->fetch.nr; i++)
365 if (get_fetch_map(remote_refs, &states->remote->fetch.items[i], &tail, 1))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700366 die(_("Could not get fetch map for refspec %s"),
Brandon Williamse5349ab2018-05-16 15:58:01 -0700367 states->remote->fetch.raw[i]);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000368
Johannes Schindelin211c8962008-02-29 01:45:45 +0000369 for (ref = fetch_map; ref; ref = ref->next) {
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +0700370 if (!ref->peer_ref || !ref_exists(ref->peer_ref->name))
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800371 string_list_append(&states->new_refs, abbrev_branch(ref->name));
Jay Soffian7b9a5e22009-02-25 03:32:20 -0500372 else
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100373 string_list_append(&states->tracked, abbrev_branch(ref->name));
Johannes Schindelin211c8962008-02-29 01:45:45 +0000374 }
Brandon Williamsa2ac50c2018-05-16 15:58:10 -0700375 stale_refs = get_stale_heads(&states->remote->fetch, fetch_map);
Jay Soffianf2ef6072009-11-10 00:03:31 -0500376 for (ref = stale_refs; ref; ref = ref->next) {
377 struct string_list_item *item =
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100378 string_list_append(&states->stale, abbrev_branch(ref->name));
Jay Soffianf2ef6072009-11-10 00:03:31 -0500379 item->util = xstrdup(ref->name);
380 }
381 free_refs(stale_refs);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000382 free_refs(fetch_map);
383
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800384 string_list_sort(&states->new_refs);
Michael Haggerty3383e192014-11-25 09:02:35 +0100385 string_list_sort(&states->tracked);
386 string_list_sort(&states->stale);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000387
388 return 0;
389}
390
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500391struct push_info {
392 char *dest;
393 int forced;
394 enum {
395 PUSH_STATUS_CREATE = 0,
396 PUSH_STATUS_DELETE,
397 PUSH_STATUS_UPTODATE,
398 PUSH_STATUS_FASTFORWARD,
399 PUSH_STATUS_OUTOFDATE,
Gary V. Vaughan4b055482010-05-14 09:31:35 +0000400 PUSH_STATUS_NOTQUERIED
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500401 } status;
402};
403
404static int get_push_ref_states(const struct ref *remote_refs,
405 struct ref_states *states)
406{
407 struct remote *remote = states->remote;
Clemens Buchacher6d2bf962009-05-31 16:26:48 +0200408 struct ref *ref, *local_refs, *push_map;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500409 if (remote->mirror)
410 return 0;
411
412 local_refs = get_local_heads();
Clemens Buchacher6a015542009-05-27 22:13:43 +0200413 push_map = copy_ref_list(remote_refs);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500414
Brandon Williams5c7ec842018-05-16 15:58:21 -0700415 match_push_refs(local_refs, &push_map, &remote->push, MATCH_REFS_NONE);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500416
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500417 for (ref = push_map; ref; ref = ref->next) {
418 struct string_list_item *item;
419 struct push_info *info;
420
421 if (!ref->peer_ref)
422 continue;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000423 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500424
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100425 item = string_list_append(&states->push,
426 abbrev_branch(ref->peer_ref->name));
Brian Gesiak38069452014-05-27 00:33:44 +0900427 item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500428 info = item->util;
429 info->forced = ref->force;
430 info->dest = xstrdup(abbrev_branch(ref->name));
431
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000432 if (is_null_oid(&ref->new_oid)) {
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500433 info->status = PUSH_STATUS_DELETE;
Jeff King4a7e27e2018-08-28 17:22:40 -0400434 } else if (oideq(&ref->old_oid, &ref->new_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500435 info->status = PUSH_STATUS_UPTODATE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000436 else if (is_null_oid(&ref->old_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500437 info->status = PUSH_STATUS_CREATE;
brian m. carlsonf4e54d02015-11-10 02:22:20 +0000438 else if (has_object_file(&ref->old_oid) &&
brian m. carlson6f3d57b2015-11-10 02:22:25 +0000439 ref_newer(&ref->new_oid, &ref->old_oid))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500440 info->status = PUSH_STATUS_FASTFORWARD;
441 else
442 info->status = PUSH_STATUS_OUTOFDATE;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500443 }
444 free_refs(local_refs);
445 free_refs(push_map);
446 return 0;
447}
448
449static int get_push_ref_states_noquery(struct ref_states *states)
450{
451 int i;
452 struct remote *remote = states->remote;
453 struct string_list_item *item;
454 struct push_info *info;
455
456 if (remote->mirror)
457 return 0;
458
Brandon Williams6bdb3042018-05-16 15:58:00 -0700459 if (!remote->push.nr) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700460 item = string_list_append(&states->push, _("(matching)"));
Brian Gesiak38069452014-05-27 00:33:44 +0900461 info = item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500462 info->status = PUSH_STATUS_NOTQUERIED;
463 info->dest = xstrdup(item->string);
464 }
Brandon Williams6bdb3042018-05-16 15:58:00 -0700465 for (i = 0; i < remote->push.nr; i++) {
466 const struct refspec_item *spec = &remote->push.items[i];
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500467 if (spec->matching)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700468 item = string_list_append(&states->push, _("(matching)"));
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800469 else if (strlen(spec->src))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100470 item = string_list_append(&states->push, spec->src);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500471 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700472 item = string_list_append(&states->push, _("(delete)"));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500473
Brian Gesiak38069452014-05-27 00:33:44 +0900474 info = item->util = xcalloc(1, sizeof(struct push_info));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500475 info->forced = spec->force;
476 info->status = PUSH_STATUS_NOTQUERIED;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800477 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500478 }
479 return 0;
480}
481
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500482static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
483{
484 struct ref *ref, *matches;
485 struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
Brandon Williams0ad4a5f2018-05-16 15:57:49 -0700486 struct refspec_item refspec;
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500487
Jacob Keller95e7c382020-08-14 17:25:08 -0700488 memset(&refspec, 0, sizeof(refspec));
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500489 refspec.force = 0;
490 refspec.pattern = 1;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800491 refspec.src = refspec.dst = "refs/heads/*";
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500492 get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
493 matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
494 fetch_map, 1);
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -0400495 for (ref = matches; ref; ref = ref->next)
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100496 string_list_append(&states->heads, abbrev_branch(ref->name));
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500497
498 free_refs(fetch_map);
499 free_refs(matches);
500
501 return 0;
502}
503
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400504struct known_remote {
505 struct known_remote *next;
506 struct remote *remote;
507};
508
509struct known_remotes {
510 struct remote *to_delete;
511 struct known_remote *list;
512};
513
514static int add_known_remote(struct remote *remote, void *cb_data)
515{
516 struct known_remotes *all = cb_data;
517 struct known_remote *r;
518
519 if (!strcmp(all->to_delete->name, remote->name))
520 return 0;
521
522 r = xmalloc(sizeof(*r));
523 r->remote = remote;
524 r->next = all->list;
525 all->list = r;
526 return 0;
527}
528
Johannes Schindelin211c8962008-02-29 01:45:45 +0000529struct branches_for_remote {
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400530 struct remote *remote;
Jay Soffian441adf02009-02-04 11:06:07 -0500531 struct string_list *branches, *skipped;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400532 struct known_remotes *keep;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000533};
534
535static int add_branch_for_removal(const char *refname,
Michael Haggerty45690a52015-05-25 18:38:41 +0000536 const struct object_id *oid, int flags, void *cb_data)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000537{
538 struct branches_for_remote *branches = cb_data;
Brandon Williams0ad4a5f2018-05-16 15:57:49 -0700539 struct refspec_item refspec;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400540 struct known_remote *kr;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000541
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400542 memset(&refspec, 0, sizeof(refspec));
543 refspec.dst = (char *)refname;
544 if (remote_find_tracking(branches->remote, &refspec))
545 return 0;
Johannes Schindelin3b9dcff2008-03-08 23:40:42 +0100546
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400547 /* don't delete a branch if another remote also uses it */
548 for (kr = branches->keep->list; kr; kr = kr->next) {
549 memset(&refspec, 0, sizeof(refspec));
550 refspec.dst = (char *)refname;
551 if (!remote_find_tracking(kr->remote, &refspec))
552 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000553 }
554
Matthieu Moy13931232010-11-02 16:31:25 +0100555 /* don't delete non-remote-tracking refs */
Christian Couder59556542013-11-30 21:55:40 +0100556 if (!starts_with(refname, "refs/remotes/")) {
Jay Soffian441adf02009-02-04 11:06:07 -0500557 /* advise user how to delete local branches */
Christian Couder59556542013-11-30 21:55:40 +0100558 if (starts_with(refname, "refs/heads/"))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100559 string_list_append(branches->skipped,
560 abbrev_branch(refname));
Jay Soffian441adf02009-02-04 11:06:07 -0500561 /* silently skip over other non-remote refs */
562 return 0;
563 }
564
Michael Haggertye26cdf92015-05-25 18:38:42 +0000565 string_list_append(branches->branches, refname);
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400566
Johannes Schindelin211c8962008-02-29 01:45:45 +0000567 return 0;
568}
569
Miklos Vajnabf984212008-11-03 19:26:18 +0100570struct rename_info {
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800571 const char *old_name;
572 const char *new_name;
Miklos Vajnabf984212008-11-03 19:26:18 +0100573 struct string_list *remote_branches;
574};
575
576static int read_remote_branches(const char *refname,
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000577 const struct object_id *oid, int flags, void *cb_data)
Miklos Vajnabf984212008-11-03 19:26:18 +0100578{
579 struct rename_info *rename = cb_data;
580 struct strbuf buf = STRBUF_INIT;
581 struct string_list_item *item;
582 int flag;
Miklos Vajnabf984212008-11-03 19:26:18 +0100583 const char *symref;
584
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800585 strbuf_addf(&buf, "refs/remotes/%s/", rename->old_name);
Christian Couder59556542013-11-30 21:55:40 +0100586 if (starts_with(refname, buf.buf)) {
René Scharfefe583c62018-08-01 12:19:07 +0200587 item = string_list_append(rename->remote_branches, refname);
Ronnie Sahlberg7695d112014-07-15 12:59:36 -0700588 symref = resolve_ref_unsafe(refname, RESOLVE_REF_READING,
René Scharfe744c0402017-09-23 11:45:04 +0200589 NULL, &flag);
Jeff King752848d2017-10-19 13:47:30 -0400590 if (symref && (flag & REF_ISSYMREF))
Miklos Vajnabf984212008-11-03 19:26:18 +0100591 item->util = xstrdup(symref);
592 else
593 item->util = NULL;
594 }
Rene Scharfee2581b72017-08-30 20:00:25 +0200595 strbuf_release(&buf);
Miklos Vajnabf984212008-11-03 19:26:18 +0100596
597 return 0;
598}
599
Miklos Vajna1dd12392008-11-10 21:43:01 +0100600static int migrate_file(struct remote *remote)
601{
602 struct strbuf buf = STRBUF_INIT;
603 int i;
Miklos Vajna1dd12392008-11-10 21:43:01 +0100604
605 strbuf_addf(&buf, "remote.%s.url", remote->name);
606 for (i = 0; i < remote->url_nr; i++)
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100607 git_config_set_multivar(buf.buf, remote->url[i], "^$", 0);
Miklos Vajna1dd12392008-11-10 21:43:01 +0100608 strbuf_reset(&buf);
609 strbuf_addf(&buf, "remote.%s.push", remote->name);
Brandon Williams6bdb3042018-05-16 15:58:00 -0700610 for (i = 0; i < remote->push.raw_nr; i++)
611 git_config_set_multivar(buf.buf, remote->push.raw[i], "^$", 0);
Miklos Vajna1dd12392008-11-10 21:43:01 +0100612 strbuf_reset(&buf);
613 strbuf_addf(&buf, "remote.%s.fetch", remote->name);
Brandon Williamse5349ab2018-05-16 15:58:01 -0700614 for (i = 0; i < remote->fetch.raw_nr; i++)
615 git_config_set_multivar(buf.buf, remote->fetch.raw[i], "^$", 0);
Miklos Vajna1dd12392008-11-10 21:43:01 +0100616 if (remote->origin == REMOTE_REMOTES)
Jeff Kingb21a5d62015-08-10 05:35:49 -0400617 unlink_or_warn(git_path("remotes/%s", remote->name));
Miklos Vajna1dd12392008-11-10 21:43:01 +0100618 else if (remote->origin == REMOTE_BRANCHES)
Jeff Kingb21a5d62015-08-10 05:35:49 -0400619 unlink_or_warn(git_path("branches/%s", remote->name));
Rene Scharfeb95c8ce2017-08-30 20:00:26 +0200620 strbuf_release(&buf);
Patrick Steinhardtc397deb2016-02-22 12:23:30 +0100621
Miklos Vajna1dd12392008-11-10 21:43:01 +0100622 return 0;
623}
624
Bert Wesargb3fd6cb2020-02-01 10:34:09 +0100625struct push_default_info
626{
627 const char *old_name;
628 enum config_scope scope;
629 struct strbuf origin;
630 int linenr;
631};
632
633static int config_read_push_default(const char *key, const char *value,
634 void *cb)
635{
636 struct push_default_info* info = cb;
637 if (strcmp(key, "remote.pushdefault") ||
638 !value || strcmp(value, info->old_name))
639 return 0;
640
641 info->scope = current_config_scope();
642 strbuf_reset(&info->origin);
643 strbuf_addstr(&info->origin, current_config_name());
644 info->linenr = current_config_line();
645
646 return 0;
647}
648
649static void handle_push_default(const char* old_name, const char* new_name)
650{
651 struct push_default_info push_default = {
652 old_name, CONFIG_SCOPE_UNKNOWN, STRBUF_INIT, -1 };
653 git_config(config_read_push_default, &push_default);
654 if (push_default.scope >= CONFIG_SCOPE_COMMAND)
655 ; /* pass */
656 else if (push_default.scope >= CONFIG_SCOPE_LOCAL) {
657 int result = git_config_set_gently("remote.pushDefault",
658 new_name);
659 if (new_name && result && result != CONFIG_NOTHING_SET)
660 die(_("could not set '%s'"), "remote.pushDefault");
661 else if (!new_name && result && result != CONFIG_NOTHING_SET)
662 die(_("could not unset '%s'"), "remote.pushDefault");
663 } else if (push_default.scope >= CONFIG_SCOPE_SYSTEM) {
664 /* warn */
665 warning(_("The %s configuration remote.pushDefault in:\n"
666 "\t%s:%d\n"
667 "now names the non-existent remote '%s'"),
668 config_scope_name(push_default.scope),
669 push_default.origin.buf, push_default.linenr,
670 old_name);
671 }
672}
673
674
Miklos Vajnabf984212008-11-03 19:26:18 +0100675static int mv(int argc, const char **argv)
676{
677 struct option options[] = {
678 OPT_END()
679 };
680 struct remote *oldremote, *newremote;
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400681 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT,
682 old_remote_context = STRBUF_INIT;
René Scharfefe583c62018-08-01 12:19:07 +0200683 struct string_list remote_branches = STRING_LIST_INIT_DUP;
Miklos Vajnabf984212008-11-03 19:26:18 +0100684 struct rename_info rename;
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400685 int i, refspec_updated = 0;
Miklos Vajnabf984212008-11-03 19:26:18 +0100686
687 if (argc != 3)
Tim Henigan45041072009-11-20 18:43:13 -0500688 usage_with_options(builtin_remote_rename_usage, options);
Miklos Vajnabf984212008-11-03 19:26:18 +0100689
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800690 rename.old_name = argv[1];
691 rename.new_name = argv[2];
Miklos Vajnabf984212008-11-03 19:26:18 +0100692 rename.remote_branches = &remote_branches;
693
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800694 oldremote = remote_get(rename.old_name);
Ævar Arnfjörð Bjarmason9144ba42020-10-27 10:41:36 +0100695 if (!remote_is_configured(oldremote, 1)) {
696 error(_("No such remote: '%s'"), rename.old_name);
697 exit(2);
698 }
Miklos Vajnabf984212008-11-03 19:26:18 +0100699
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800700 if (!strcmp(rename.old_name, rename.new_name) && oldremote->origin != REMOTE_CONFIG)
Miklos Vajna1dd12392008-11-10 21:43:01 +0100701 return migrate_file(oldremote);
702
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800703 newremote = remote_get(rename.new_name);
Ævar Arnfjörð Bjarmason9144ba42020-10-27 10:41:36 +0100704 if (remote_is_configured(newremote, 1)) {
705 error(_("remote %s already exists."), rename.new_name);
706 exit(3);
707 }
Miklos Vajnabf984212008-11-03 19:26:18 +0100708
Sean Baragf2c6fda2020-10-01 03:46:13 +0000709 if (!valid_remote_name(rename.new_name))
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800710 die(_("'%s' is not a valid remote name"), rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100711
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800712 strbuf_addf(&buf, "remote.%s", rename.old_name);
713 strbuf_addf(&buf2, "remote.%s", rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100714 if (git_config_rename_section(buf.buf, buf2.buf) < 1)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700715 return error(_("Could not rename config section '%s' to '%s'"),
Miklos Vajnabf984212008-11-03 19:26:18 +0100716 buf.buf, buf2.buf);
717
718 strbuf_reset(&buf);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800719 strbuf_addf(&buf, "remote.%s.fetch", rename.new_name);
Derrick Stolee504ee122020-11-25 22:12:49 +0000720 git_config_set_multivar(buf.buf, NULL, NULL, CONFIG_FLAGS_MULTI_REPLACE);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800721 strbuf_addf(&old_remote_context, ":refs/remotes/%s/", rename.old_name);
Brandon Williamse5349ab2018-05-16 15:58:01 -0700722 for (i = 0; i < oldremote->fetch.raw_nr; i++) {
Miklos Vajnabf984212008-11-03 19:26:18 +0100723 char *ptr;
724
725 strbuf_reset(&buf2);
Brandon Williamse5349ab2018-05-16 15:58:01 -0700726 strbuf_addstr(&buf2, oldremote->fetch.raw[i]);
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400727 ptr = strstr(buf2.buf, old_remote_context.buf);
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400728 if (ptr) {
729 refspec_updated = 1;
Martin von Zweigbergk28f555f2011-09-01 20:50:33 -0400730 strbuf_splice(&buf2,
731 ptr-buf2.buf + strlen(":refs/remotes/"),
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800732 strlen(rename.old_name), rename.new_name,
733 strlen(rename.new_name));
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400734 } else
Ralf Thielowaa3bb872012-05-18 18:46:01 +0200735 warning(_("Not updating non-default fetch refspec\n"
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700736 "\t%s\n"
737 "\tPlease update the configuration manually if necessary."),
Martin von Zweigbergk1822b862011-09-03 11:26:59 -0400738 buf2.buf);
739
Patrick Steinhardt3d180642016-02-22 12:23:36 +0100740 git_config_set_multivar(buf.buf, buf2.buf, "^$", 0);
Miklos Vajnabf984212008-11-03 19:26:18 +0100741 }
742
743 read_branches();
744 for (i = 0; i < branch_list.nr; i++) {
745 struct string_list_item *item = branch_list.items + i;
746 struct branch_info *info = item->util;
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800747 if (info->remote_name && !strcmp(info->remote_name, rename.old_name)) {
Miklos Vajnabf984212008-11-03 19:26:18 +0100748 strbuf_reset(&buf);
749 strbuf_addf(&buf, "branch.%s.remote", item->string);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800750 git_config_set(buf.buf, rename.new_name);
Miklos Vajnabf984212008-11-03 19:26:18 +0100751 }
Bert Wesarg923d4a52020-01-27 08:04:30 +0100752 if (info->push_remote_name && !strcmp(info->push_remote_name, rename.old_name)) {
753 strbuf_reset(&buf);
Ævar Arnfjörð Bjarmason0f1da602021-02-25 02:21:17 +0100754 strbuf_addf(&buf, "branch.%s.pushRemote", item->string);
Bert Wesarg923d4a52020-01-27 08:04:30 +0100755 git_config_set(buf.buf, rename.new_name);
756 }
Miklos Vajnabf984212008-11-03 19:26:18 +0100757 }
758
Martin von Zweigbergkb52d00a2011-09-10 15:39:23 -0400759 if (!refspec_updated)
760 return 0;
761
Miklos Vajnabf984212008-11-03 19:26:18 +0100762 /*
763 * First remove symrefs, then rename the rest, finally create
764 * the new symrefs.
765 */
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000766 for_each_ref(read_remote_branches, &rename);
Miklos Vajnabf984212008-11-03 19:26:18 +0100767 for (i = 0; i < remote_branches.nr; i++) {
768 struct string_list_item *item = remote_branches.items + i;
Patrick Steinhardt1553f5e2022-03-01 10:33:50 +0100769 struct strbuf referent = STRBUF_INIT;
Miklos Vajnabf984212008-11-03 19:26:18 +0100770
Patrick Steinhardt1553f5e2022-03-01 10:33:50 +0100771 if (refs_read_symbolic_ref(get_main_ref_store(the_repository), item->string,
772 &referent))
Miklos Vajnabf984212008-11-03 19:26:18 +0100773 continue;
Michael Haggerty91774af2017-11-05 09:42:06 +0100774 if (delete_ref(NULL, item->string, NULL, REF_NO_DEREF))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700775 die(_("deleting '%s' failed"), item->string);
Patrick Steinhardt1553f5e2022-03-01 10:33:50 +0100776
777 strbuf_release(&referent);
Miklos Vajnabf984212008-11-03 19:26:18 +0100778 }
779 for (i = 0; i < remote_branches.nr; i++) {
780 struct string_list_item *item = remote_branches.items + i;
781
782 if (item->util)
783 continue;
784 strbuf_reset(&buf);
785 strbuf_addstr(&buf, item->string);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800786 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old_name),
787 rename.new_name, strlen(rename.new_name));
Miklos Vajnabf984212008-11-03 19:26:18 +0100788 strbuf_reset(&buf2);
789 strbuf_addf(&buf2, "remote: renamed %s to %s",
790 item->string, buf.buf);
791 if (rename_ref(item->string, buf.buf, buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700792 die(_("renaming '%s' failed"), item->string);
Miklos Vajnabf984212008-11-03 19:26:18 +0100793 }
794 for (i = 0; i < remote_branches.nr; i++) {
795 struct string_list_item *item = remote_branches.items + i;
796
797 if (!item->util)
798 continue;
799 strbuf_reset(&buf);
800 strbuf_addstr(&buf, item->string);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800801 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old_name),
802 rename.new_name, strlen(rename.new_name));
Miklos Vajnabf984212008-11-03 19:26:18 +0100803 strbuf_reset(&buf2);
804 strbuf_addstr(&buf2, item->util);
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800805 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old_name),
806 rename.new_name, strlen(rename.new_name));
Miklos Vajnabf984212008-11-03 19:26:18 +0100807 strbuf_reset(&buf3);
808 strbuf_addf(&buf3, "remote: renamed %s to %s",
809 item->string, buf.buf);
810 if (create_symref(buf.buf, buf2.buf, buf3.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700811 die(_("creating '%s' failed"), buf.buf);
Miklos Vajnabf984212008-11-03 19:26:18 +0100812 }
René Scharfefe583c62018-08-01 12:19:07 +0200813 string_list_clear(&remote_branches, 1);
Bert Wesargb3fd6cb2020-02-01 10:34:09 +0100814
815 handle_push_default(rename.old_name, rename.new_name);
816
Miklos Vajnabf984212008-11-03 19:26:18 +0100817 return 0;
818}
819
Johannes Schindelin211c8962008-02-29 01:45:45 +0000820static int rm(int argc, const char **argv)
821{
822 struct option options[] = {
823 OPT_END()
824 };
825 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500826 struct strbuf buf = STRBUF_INIT;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400827 struct known_remotes known_remotes = { NULL, NULL };
Thiago Farina183113a2010-07-04 16:46:19 -0300828 struct string_list branches = STRING_LIST_INIT_DUP;
829 struct string_list skipped = STRING_LIST_INIT_DUP;
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000830 struct branches_for_remote cb_data;
Jay Soffiane02f1762009-02-03 12:51:12 -0500831 int i, result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000832
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000833 memset(&cb_data, 0, sizeof(cb_data));
834 cb_data.branches = &branches;
835 cb_data.skipped = &skipped;
836 cb_data.keep = &known_remotes;
837
Johannes Schindelin211c8962008-02-29 01:45:45 +0000838 if (argc != 2)
Tim Henigan45041072009-11-20 18:43:13 -0500839 usage_with_options(builtin_remote_rm_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000840
841 remote = remote_get(argv[1]);
Ævar Arnfjörð Bjarmason9144ba42020-10-27 10:41:36 +0100842 if (!remote_is_configured(remote, 1)) {
843 error(_("No such remote: '%s'"), argv[1]);
844 exit(2);
845 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000846
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400847 known_remotes.to_delete = remote;
848 for_each_remote(add_known_remote, &known_remotes);
849
Johannes Schindelin211c8962008-02-29 01:45:45 +0000850 read_branches();
851 for (i = 0; i < branch_list.nr; i++) {
Johannes Schindelinc455c872008-07-21 19:03:49 +0100852 struct string_list_item *item = branch_list.items + i;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000853 struct branch_info *info = item->util;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500854 if (info->remote_name && !strcmp(info->remote_name, remote->name)) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000855 const char *keys[] = { "remote", "merge", NULL }, **k;
856 for (k = keys; *k; k++) {
857 strbuf_reset(&buf);
858 strbuf_addf(&buf, "branch.%s.%s",
Johannes Schindelinc455c872008-07-21 19:03:49 +0100859 item->string, *k);
Ross Lagerwall20690b22017-02-18 00:23:41 +0000860 result = git_config_set_gently(buf.buf, NULL);
861 if (result && result != CONFIG_NOTHING_SET)
862 die(_("could not unset '%s'"), buf.buf);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000863 }
864 }
Bert Wesarg923d4a52020-01-27 08:04:30 +0100865 if (info->push_remote_name && !strcmp(info->push_remote_name, remote->name)) {
866 strbuf_reset(&buf);
867 strbuf_addf(&buf, "branch.%s.pushremote", item->string);
868 result = git_config_set_gently(buf.buf, NULL);
869 if (result && result != CONFIG_NOTHING_SET)
870 die(_("could not unset '%s'"), buf.buf);
871 }
Johannes Schindelin211c8962008-02-29 01:45:45 +0000872 }
873
874 /*
875 * We cannot just pass a function to for_each_ref() which deletes
876 * the branches one by one, since for_each_ref() relies on cached
877 * refs, which are invalidated when deleting a branch.
878 */
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400879 cb_data.remote = remote;
Michael Haggerty45690a52015-05-25 18:38:41 +0000880 result = for_each_ref(add_branch_for_removal, &cb_data);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000881 strbuf_release(&buf);
882
Jay Soffiane02f1762009-02-03 12:51:12 -0500883 if (!result)
Michael Haggerty91774af2017-11-05 09:42:06 +0100884 result = delete_refs("remote: remove", &branches, REF_NO_DEREF);
Michael Haggertye26cdf92015-05-25 18:38:42 +0000885 string_list_clear(&branches, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000886
Jay Soffian441adf02009-02-04 11:06:07 -0500887 if (skipped.nr) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +0700888 fprintf_ln(stderr,
889 Q_("Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"
890 "to delete it, use:",
891 "Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"
892 "to delete them, use:",
893 skipped.nr));
Jay Soffian441adf02009-02-04 11:06:07 -0500894 for (i = 0; i < skipped.nr; i++)
895 fprintf(stderr, " git branch -d %s\n",
896 skipped.items[i].string);
897 }
898 string_list_clear(&skipped, 0);
899
Jens Lindströmb07bdd32014-05-23 12:28:43 +0200900 if (!result) {
901 strbuf_addf(&buf, "remote.%s", remote->name);
902 if (git_config_rename_section(buf.buf, NULL) < 1)
903 return error(_("Could not remove config section '%s'"), buf.buf);
Bert Wesargb3fd6cb2020-02-01 10:34:09 +0100904
905 handle_push_default(remote->name, NULL);
Jens Lindströmb07bdd32014-05-23 12:28:43 +0200906 }
907
Jay Soffiane02f1762009-02-03 12:51:12 -0500908 return result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000909}
910
Linus Torvalds2af202b2009-06-18 10:28:43 -0700911static void clear_push_info(void *util, const char *string)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000912{
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500913 struct push_info *info = util;
914 free(info->dest);
915 free(info);
916}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000917
Jay Soffian88733232009-02-25 03:32:19 -0500918static void free_remote_ref_states(struct ref_states *states)
919{
Brandon Williamsb537e0b2018-02-14 10:59:35 -0800920 string_list_clear(&states->new_refs, 0);
Bert Wesarg92f676f2009-12-01 00:57:27 +0100921 string_list_clear(&states->stale, 1);
Jay Soffian88733232009-02-25 03:32:19 -0500922 string_list_clear(&states->tracked, 0);
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500923 string_list_clear(&states->heads, 0);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500924 string_list_clear_func(&states->push, clear_push_info);
Jay Soffian88733232009-02-25 03:32:19 -0500925}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000926
Jay Soffiancca7c972009-02-25 03:32:22 -0500927static int append_ref_to_tracked_list(const char *refname,
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000928 const struct object_id *oid, int flags, void *cb_data)
Jay Soffiancca7c972009-02-25 03:32:22 -0500929{
930 struct ref_states *states = cb_data;
Brandon Williams0ad4a5f2018-05-16 15:57:49 -0700931 struct refspec_item refspec;
Jay Soffiancca7c972009-02-25 03:32:22 -0500932
Jay Soffian3bd92562009-02-25 03:32:23 -0500933 if (flags & REF_ISSYMREF)
934 return 0;
935
Jay Soffiancca7c972009-02-25 03:32:22 -0500936 memset(&refspec, 0, sizeof(refspec));
937 refspec.dst = (char *)refname;
938 if (!remote_find_tracking(states->remote, &refspec))
Julian Phillips1d2f80f2010-06-26 00:41:38 +0100939 string_list_append(&states->tracked, abbrev_branch(refspec.src));
Jay Soffiancca7c972009-02-25 03:32:22 -0500940
941 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000942}
943
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200944static int get_remote_ref_states(const char *name,
945 struct ref_states *states,
946 int query)
947{
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200948 states->remote = remote_get(name);
949 if (!states->remote)
Shulhan50254252018-09-13 20:18:33 +0700950 return error(_("No such remote: '%s'"), name);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200951
952 read_branches();
953
954 if (query) {
Andrzej Hunt68ffe092021-03-21 16:58:37 +0000955 struct transport *transport;
956 const struct ref *remote_refs;
957
Chris Frey345a3802009-06-25 17:21:35 -0400958 transport = transport_get(states->remote, states->remote->url_nr > 0 ?
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200959 states->remote->url[0] : NULL);
Brandon Williams1af8ae12018-03-15 10:31:23 -0700960 remote_refs = transport_get_remote_refs(transport, NULL);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200961
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500962 states->queried = 1;
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500963 if (query & GET_REF_STATES)
964 get_ref_states(remote_refs, states);
965 if (query & GET_HEAD_NAMES)
966 get_head_names(remote_refs, states);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500967 if (query & GET_PUSH_REF_STATES)
968 get_push_ref_states(remote_refs, states);
Andrzej Hunt68ffe092021-03-21 16:58:37 +0000969 transport_disconnect(transport);
Jay Soffian3bd92562009-02-25 03:32:23 -0500970 } else {
Michael Haggerty53dc95b2015-05-25 18:38:43 +0000971 for_each_ref(append_ref_to_tracked_list, states);
Michael Haggerty3383e192014-11-25 09:02:35 +0100972 string_list_sort(&states->tracked);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500973 get_push_ref_states_noquery(states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200974 }
975
976 return 0;
977}
978
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500979struct show_info {
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +0200980 struct string_list list;
981 struct ref_states states;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500982 int width, width2;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500983 int any_rebase;
984};
985
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +0200986#define SHOW_INFO_INIT { \
987 .list = STRING_LIST_INIT_DUP, \
988 .states = REF_STATES_INIT, \
989}
990
Linus Torvalds2af202b2009-06-18 10:28:43 -0700991static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
Olivier Marine7d5a972008-06-11 00:54:49 +0200992{
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500993 struct show_info *info = cb_data;
994 int n = strlen(item->string);
995 if (n > info->width)
996 info->width = n;
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +0200997 string_list_insert(&info->list, item->string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500998 return 0;
999}
Olivier Marine7d5a972008-06-11 00:54:49 +02001000
Linus Torvalds2af202b2009-06-18 10:28:43 -07001001static int show_remote_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001002{
1003 struct show_info *info = cb_data;
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001004 struct ref_states *states = &info->states;
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001005 const char *name = item->string;
Olivier Marine7d5a972008-06-11 00:54:49 +02001006
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001007 if (states->queried) {
1008 const char *fmt = "%s";
1009 const char *arg = "";
Brandon Williamsb537e0b2018-02-14 10:59:35 -08001010 if (string_list_has_string(&states->new_refs, name)) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001011 fmt = _(" new (next fetch will store in remotes/%s)");
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001012 arg = states->remote->name;
1013 } else if (string_list_has_string(&states->tracked, name))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001014 arg = _(" tracked");
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001015 else if (string_list_has_string(&states->stale, name))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001016 arg = _(" stale (use 'git remote prune' to remove)");
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001017 else
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001018 arg = _(" ???");
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001019 printf(" %-*s", info->width, name);
1020 printf(fmt, arg);
1021 printf("\n");
1022 } else
1023 printf(" %s\n", name);
1024
1025 return 0;
1026}
1027
Linus Torvalds2af202b2009-06-18 10:28:43 -07001028static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001029{
1030 struct show_info *show_info = cb_data;
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001031 struct ref_states *states = &show_info->states;
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001032 struct branch_info *branch_info = branch_item->util;
1033 struct string_list_item *item;
1034 int n;
1035
1036 if (!branch_info->merge.nr || !branch_info->remote_name ||
1037 strcmp(states->remote->name, branch_info->remote_name))
1038 return 0;
1039 if ((n = strlen(branch_item->string)) > show_info->width)
1040 show_info->width = n;
Bert Wesarg88f85762020-01-27 08:04:27 +01001041 if (branch_info->rebase >= REBASE_TRUE)
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001042 show_info->any_rebase = 1;
1043
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001044 item = string_list_insert(&show_info->list, branch_item->string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001045 item->util = branch_info;
1046
1047 return 0;
1048}
1049
Linus Torvalds2af202b2009-06-18 10:28:43 -07001050static int show_local_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001051{
1052 struct show_info *show_info = cb_data;
1053 struct branch_info *branch_info = item->util;
1054 struct string_list *merge = &branch_info->merge;
Vasco Almeidaa1b467a2016-06-17 20:21:22 +00001055 int width = show_info->width + 4;
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001056 int i;
1057
Bert Wesarg88f85762020-01-27 08:04:27 +01001058 if (branch_info->rebase >= REBASE_TRUE && branch_info->merge.nr > 1) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001059 error(_("invalid branch.%s.merge; cannot rebase onto > 1 branch"),
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001060 item->string);
1061 return 0;
1062 }
1063
1064 printf(" %-*s ", show_info->width, item->string);
Bert Wesarg88f85762020-01-27 08:04:27 +01001065 if (branch_info->rebase >= REBASE_TRUE) {
Johannes Schindelin1131ec92018-04-25 14:29:38 +02001066 const char *msg;
Bert Wesarg88f85762020-01-27 08:04:27 +01001067 if (branch_info->rebase == REBASE_INTERACTIVE)
Johannes Schindelin1131ec92018-04-25 14:29:38 +02001068 msg = _("rebases interactively onto remote %s");
1069 else if (branch_info->rebase == REBASE_MERGES)
1070 msg = _("rebases interactively (with merges) onto "
1071 "remote %s");
1072 else
1073 msg = _("rebases onto remote %s");
1074 printf_ln(msg, merge->items[0].string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001075 return 0;
1076 } else if (show_info->any_rebase) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001077 printf_ln(_(" merges with remote %s"), merge->items[0].string);
Vasco Almeidaa1b467a2016-06-17 20:21:22 +00001078 width++;
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001079 } else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001080 printf_ln(_("merges with remote %s"), merge->items[0].string);
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001081 }
1082 for (i = 1; i < merge->nr; i++)
Vasco Almeidaa1b467a2016-06-17 20:21:22 +00001083 printf(_("%-*s and with remote %s\n"), width, "",
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001084 merge->items[i].string);
1085
1086 return 0;
1087}
1088
Linus Torvalds2af202b2009-06-18 10:28:43 -07001089static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001090{
1091 struct show_info *show_info = cb_data;
1092 struct push_info *push_info = push_item->util;
1093 struct string_list_item *item;
1094 int n;
1095 if ((n = strlen(push_item->string)) > show_info->width)
1096 show_info->width = n;
1097 if ((n = strlen(push_info->dest)) > show_info->width2)
1098 show_info->width2 = n;
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001099 item = string_list_append(&show_info->list, push_item->string);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001100 item->util = push_item->util;
1101 return 0;
1102}
1103
Jeff King48ef5632009-03-22 04:59:20 -04001104/*
1105 * Sorting comparison for a string list that has push_info
1106 * structs in its util field
1107 */
1108static int cmp_string_with_push(const void *va, const void *vb)
1109{
1110 const struct string_list_item *a = va;
1111 const struct string_list_item *b = vb;
1112 const struct push_info *a_push = a->util;
1113 const struct push_info *b_push = b->util;
1114 int cmp = strcmp(a->string, b->string);
1115 return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
1116}
1117
Linus Torvalds2af202b2009-06-18 10:28:43 -07001118static int show_push_info_item(struct string_list_item *item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001119{
1120 struct show_info *show_info = cb_data;
1121 struct push_info *push_info = item->util;
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001122 const char *src = item->string, *status = NULL;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001123
1124 switch (push_info->status) {
1125 case PUSH_STATUS_CREATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001126 status = _("create");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001127 break;
1128 case PUSH_STATUS_DELETE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001129 status = _("delete");
1130 src = _("(none)");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001131 break;
1132 case PUSH_STATUS_UPTODATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001133 status = _("up to date");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001134 break;
1135 case PUSH_STATUS_FASTFORWARD:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001136 status = _("fast-forwardable");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001137 break;
1138 case PUSH_STATUS_OUTOFDATE:
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001139 status = _("local out of date");
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001140 break;
1141 case PUSH_STATUS_NOTQUERIED:
1142 break;
1143 }
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001144 if (status) {
1145 if (push_info->forced)
1146 printf_ln(_(" %-*s forces to %-*s (%s)"), show_info->width, src,
1147 show_info->width2, push_info->dest, status);
1148 else
1149 printf_ln(_(" %-*s pushes to %-*s (%s)"), show_info->width, src,
1150 show_info->width2, push_info->dest, status);
1151 } else {
1152 if (push_info->forced)
1153 printf_ln(_(" %-*s forces to %s"), show_info->width, src,
1154 push_info->dest);
1155 else
1156 printf_ln(_(" %-*s pushes to %s"), show_info->width, src,
1157 push_info->dest);
1158 }
Olivier Marine7d5a972008-06-11 00:54:49 +02001159 return 0;
1160}
1161
Michael Haggertyce2223f2013-10-30 06:33:02 +01001162static int get_one_entry(struct remote *remote, void *priv)
1163{
1164 struct string_list *list = priv;
1165 struct strbuf url_buf = STRBUF_INIT;
1166 const char **url;
1167 int i, url_nr;
1168
1169 if (remote->url_nr > 0) {
1170 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1171 string_list_append(list, remote->name)->util =
1172 strbuf_detach(&url_buf, NULL);
1173 } else
1174 string_list_append(list, remote->name)->util = NULL;
1175 if (remote->pushurl_nr) {
1176 url = remote->pushurl;
1177 url_nr = remote->pushurl_nr;
1178 } else {
1179 url = remote->url;
1180 url_nr = remote->url_nr;
1181 }
1182 for (i = 0; i < url_nr; i++)
1183 {
1184 strbuf_addf(&url_buf, "%s (push)", url[i]);
1185 string_list_append(list, remote->name)->util =
1186 strbuf_detach(&url_buf, NULL);
1187 }
1188
1189 return 0;
1190}
1191
1192static int show_all(void)
1193{
1194 struct string_list list = STRING_LIST_INIT_NODUP;
1195 int result;
1196
1197 list.strdup_strings = 1;
1198 result = for_each_remote(get_one_entry, &list);
1199
1200 if (!result) {
1201 int i;
1202
Michael Haggerty3383e192014-11-25 09:02:35 +01001203 string_list_sort(&list);
Michael Haggertyce2223f2013-10-30 06:33:02 +01001204 for (i = 0; i < list.nr; i++) {
1205 struct string_list_item *item = list.items + i;
1206 if (verbose)
1207 printf("%s\t%s\n", item->string,
1208 item->util ? (const char *)item->util : "");
1209 else {
1210 if (i && !strcmp((item - 1)->string, item->string))
1211 continue;
1212 printf("%s\n", item->string);
1213 }
1214 }
1215 }
1216 string_list_clear(&list, 1);
1217 return result;
1218}
1219
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001220static int show(int argc, const char **argv)
Johannes Schindelin211c8962008-02-29 01:45:45 +00001221{
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001222 int no_query = 0, result = 0, query_flag = 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001223 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001224 OPT_BOOL('n', NULL, &no_query, N_("do not query remotes")),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001225 OPT_END()
1226 };
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001227 struct show_info info = SHOW_INFO_INIT;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001228
Tim Henigan45041072009-11-20 18:43:13 -05001229 argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001230 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001231
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001232 if (argc < 1)
1233 return show_all();
Johannes Schindelin211c8962008-02-29 01:45:45 +00001234
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001235 if (!no_query)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001236 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001237
Johannes Schindelin211c8962008-02-29 01:45:45 +00001238 for (; argc; argc--, argv++) {
Olivier Marin0ecfcb32008-06-10 16:51:08 +02001239 int i;
Michael J Gruber857f8c32009-06-13 18:29:10 +02001240 const char **url;
1241 int url_nr;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001242
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001243 get_remote_ref_states(*argv, &info.states, query_flag);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001244
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001245 printf_ln(_("* remote %s"), *argv);
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001246 printf_ln(_(" Fetch URL: %s"), info.states.remote->url_nr > 0 ?
1247 info.states.remote->url[0] : _("(no URL)"));
1248 if (info.states.remote->pushurl_nr) {
1249 url = info.states.remote->pushurl;
1250 url_nr = info.states.remote->pushurl_nr;
Michael J Gruber857f8c32009-06-13 18:29:10 +02001251 } else {
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001252 url = info.states.remote->url;
1253 url_nr = info.states.remote->url_nr;
Michael J Gruber857f8c32009-06-13 18:29:10 +02001254 }
Junio C Hamanocd2b8ae2011-08-25 14:46:52 -07001255 for (i = 0; i < url_nr; i++)
Ævar Arnfjörð Bjarmason66f5f6d2017-05-11 21:20:12 +00001256 /*
1257 * TRANSLATORS: the colon ':' should align
1258 * with the one in " Fetch URL: %s"
1259 * translation.
1260 */
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001261 printf_ln(_(" Push URL: %s"), url[i]);
Michael J Gruber857f8c32009-06-13 18:29:10 +02001262 if (!i)
Vasco Almeida7ba7b9a2016-06-17 20:21:21 +00001263 printf_ln(_(" Push URL: %s"), _("(no URL)"));
Olivier Marine7d5a972008-06-11 00:54:49 +02001264 if (no_query)
Vasco Almeida7ba7b9a2016-06-17 20:21:21 +00001265 printf_ln(_(" HEAD branch: %s"), _("(not queried)"));
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001266 else if (!info.states.heads.nr)
Vasco Almeida7ba7b9a2016-06-17 20:21:21 +00001267 printf_ln(_(" HEAD branch: %s"), _("(unknown)"));
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001268 else if (info.states.heads.nr == 1)
1269 printf_ln(_(" HEAD branch: %s"), info.states.heads.items[0].string);
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001270 else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001271 printf(_(" HEAD branch (remote HEAD is ambiguous,"
1272 " may be one of the following):\n"));
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001273 for (i = 0; i < info.states.heads.nr; i++)
1274 printf(" %s\n", info.states.heads.items[i].string);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001275 }
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001276
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001277 /* remote branch info */
1278 info.width = 0;
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001279 for_each_string_list(&info.states.new_refs, add_remote_to_show_info, &info);
1280 for_each_string_list(&info.states.tracked, add_remote_to_show_info, &info);
1281 for_each_string_list(&info.states.stale, add_remote_to_show_info, &info);
1282 if (info.list.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001283 printf_ln(Q_(" Remote branch:%s",
1284 " Remote branches:%s",
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001285 info.list.nr),
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001286 no_query ? _(" (status not queried)") : "");
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001287 for_each_string_list(&info.list, show_remote_info_item, &info);
1288 string_list_clear(&info.list, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001289
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001290 /* git pull info */
1291 info.width = 0;
1292 info.any_rebase = 0;
Julian Phillipsb684e972010-06-26 00:41:34 +01001293 for_each_string_list(&branch_list, add_local_to_show_info, &info);
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001294 if (info.list.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001295 printf_ln(Q_(" Local branch configured for 'git pull':",
1296 " Local branches configured for 'git pull':",
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001297 info.list.nr));
1298 for_each_string_list(&info.list, show_local_info_item, &info);
1299 string_list_clear(&info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001300
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001301 /* git push info */
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001302 if (info.states.remote->mirror)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001303 printf_ln(_(" Local refs will be mirrored by 'git push'"));
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001304
1305 info.width = info.width2 = 0;
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001306 for_each_string_list(&info.states.push, add_push_to_show_info, &info);
1307 QSORT(info.list.items, info.list.nr, cmp_string_with_push);
1308 if (info.list.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001309 printf_ln(Q_(" Local ref configured for 'git push'%s:",
1310 " Local refs configured for 'git push'%s:",
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001311 info.list.nr),
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001312 no_query ? _(" (status not queried)") : "");
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001313 for_each_string_list(&info.list, show_push_info_item, &info);
1314 string_list_clear(&info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001315
Ævar Arnfjörð Bjarmason0000e812021-10-01 12:27:35 +02001316 free_remote_ref_states(&info.states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001317 }
1318
1319 return result;
1320}
1321
Jay Soffianbc14fac2009-02-25 03:32:25 -05001322static int set_head(int argc, const char **argv)
1323{
1324 int i, opt_a = 0, opt_d = 0, result = 0;
1325 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1326 char *head_name = NULL;
1327
1328 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001329 OPT_BOOL('a', "auto", &opt_a,
1330 N_("set refs/remotes/<name>/HEAD according to remote")),
1331 OPT_BOOL('d', "delete", &opt_d,
1332 N_("delete refs/remotes/<name>/HEAD")),
Jay Soffianbc14fac2009-02-25 03:32:25 -05001333 OPT_END()
1334 };
Tim Henigan45041072009-11-20 18:43:13 -05001335 argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001336 0);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001337 if (argc)
1338 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1339
1340 if (!opt_a && !opt_d && argc == 2) {
1341 head_name = xstrdup(argv[1]);
1342 } else if (opt_a && !opt_d && argc == 1) {
Ævar Arnfjörð Bjarmason0bc77872021-10-01 12:27:34 +02001343 struct ref_states states = REF_STATES_INIT;
Jay Soffianbc14fac2009-02-25 03:32:25 -05001344 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1345 if (!states.heads.nr)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001346 result |= error(_("Cannot determine remote HEAD"));
Jay Soffianbc14fac2009-02-25 03:32:25 -05001347 else if (states.heads.nr > 1) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001348 result |= error(_("Multiple remote HEAD branches. "
1349 "Please choose one explicitly with:"));
Jay Soffianbc14fac2009-02-25 03:32:25 -05001350 for (i = 0; i < states.heads.nr; i++)
1351 fprintf(stderr, " git remote set-head %s %s\n",
1352 argv[0], states.heads.items[i].string);
1353 } else
1354 head_name = xstrdup(states.heads.items[0].string);
1355 free_remote_ref_states(&states);
1356 } else if (opt_d && !opt_a && argc == 1) {
Michael Haggerty91774af2017-11-05 09:42:06 +01001357 if (delete_ref(NULL, buf.buf, NULL, REF_NO_DEREF))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001358 result |= error(_("Could not delete %s"), buf.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001359 } else
Tim Henigan45041072009-11-20 18:43:13 -05001360 usage_with_options(builtin_remote_sethead_usage, options);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001361
1362 if (head_name) {
Jay Soffianbc14fac2009-02-25 03:32:25 -05001363 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1364 /* make sure it's valid */
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +07001365 if (!ref_exists(buf2.buf))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001366 result |= error(_("Not a valid ref: %s"), buf2.buf);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001367 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001368 result |= error(_("Could not setup %s"), buf.buf);
Christian Schlack5a07c6c2020-09-17 15:27:38 +00001369 else if (opt_a)
Jay Soffianbc14fac2009-02-25 03:32:25 -05001370 printf("%s/HEAD set to %s\n", argv[0], head_name);
1371 free(head_name);
1372 }
1373
1374 strbuf_release(&buf);
1375 strbuf_release(&buf2);
1376 return result;
1377}
1378
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001379static int prune_remote(const char *remote, int dry_run)
1380{
Michael Haggerty85529432014-11-25 09:02:34 +01001381 int result = 0;
Ævar Arnfjörð Bjarmason0bc77872021-10-01 12:27:34 +02001382 struct ref_states states = REF_STATES_INIT;
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001383 struct string_list refs_to_prune = STRING_LIST_INIT_NODUP;
Michael Haggerty85529432014-11-25 09:02:34 +01001384 struct string_list_item *item;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001385 const char *dangling_msg = dry_run
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001386 ? _(" %s will become dangling!")
1387 : _(" %s has become dangling!");
Junio C Hamanof8948e22009-02-08 23:27:10 -08001388
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001389 get_remote_ref_states(remote, &states, GET_REF_STATES);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001390
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001391 if (!states.stale.nr) {
1392 free_remote_ref_states(&states);
1393 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001394 }
1395
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001396 printf_ln(_("Pruning %s"), remote);
1397 printf_ln(_("URL: %s"),
1398 states.remote->url_nr
1399 ? states.remote->url[0]
1400 : _("(no URL)"));
1401
Michael Haggerty85529432014-11-25 09:02:34 +01001402 for_each_string_list_item(item, &states.stale)
1403 string_list_append(&refs_to_prune, item->util);
Michael Haggerty3383e192014-11-25 09:02:35 +01001404 string_list_sort(&refs_to_prune);
Michael Haggerty28d3f212014-11-25 09:02:30 +01001405
Michael Haggertya1223662015-06-22 16:02:58 +02001406 if (!dry_run)
Michael Haggerty64da4192017-05-22 16:17:38 +02001407 result |= delete_refs("remote: prune", &refs_to_prune, 0);
Michael Haggerty16d4fa32014-11-25 09:02:29 +01001408
Michael Haggerty85529432014-11-25 09:02:34 +01001409 for_each_string_list_item(item, &states.stale) {
1410 const char *refname = item->util;
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001411
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001412 if (dry_run)
1413 printf_ln(_(" * [would prune] %s"),
1414 abbrev_ref(refname, "refs/remotes/"));
1415 else
1416 printf_ln(_(" * [pruned] %s"),
1417 abbrev_ref(refname, "refs/remotes/"));
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001418 }
1419
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001420 warn_dangling_symrefs(stdout, dangling_msg, &refs_to_prune);
Jens Lindströme6bea662014-05-23 12:30:25 +02001421
Michael Haggertyfcce0da2014-11-25 09:02:33 +01001422 string_list_clear(&refs_to_prune, 0);
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001423 free_remote_ref_states(&states);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001424 return result;
1425}
1426
Michael Haggertyce2223f2013-10-30 06:33:02 +01001427static int prune(int argc, const char **argv)
1428{
1429 int dry_run = 0, result = 0;
1430 struct option options[] = {
1431 OPT__DRY_RUN(&dry_run, N_("dry run")),
1432 OPT_END()
1433 };
1434
1435 argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
1436 0);
1437
1438 if (argc < 1)
1439 usage_with_options(builtin_remote_prune_usage, options);
1440
1441 for (; argc; argc--, argv++)
1442 result |= prune_remote(*argv, dry_run);
1443
1444 return result;
1445}
1446
Björn Gustavsson8db35592009-11-10 09:21:32 +01001447static int get_remote_default(const char *key, const char *value, void *priv)
Johannes Schindelin211c8962008-02-29 01:45:45 +00001448{
Björn Gustavsson8db35592009-11-10 09:21:32 +01001449 if (strcmp(key, "remotes.default") == 0) {
1450 int *found = priv;
1451 *found = 1;
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001452 }
Johannes Schindelin211c8962008-02-29 01:45:45 +00001453 return 0;
1454}
1455
1456static int update(int argc, const char **argv)
1457{
Michael Haggerty90765fa2013-10-30 06:33:04 +01001458 int i, prune = -1;
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001459 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001460 OPT_BOOL('p', "prune", &prune,
1461 N_("prune remotes after fetching")),
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001462 OPT_END()
1463 };
Jeff King22f9b7f2020-07-28 16:24:27 -04001464 struct strvec fetch_argv = STRVEC_INIT;
Björn Gustavsson8db35592009-11-10 09:21:32 +01001465 int default_defined = 0;
Michael Haggerty86075902013-10-30 06:33:03 +01001466 int retval;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001467
Tim Henigan45041072009-11-20 18:43:13 -05001468 argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001469 PARSE_OPT_KEEP_ARGV0);
Björn Gustavsson8db35592009-11-10 09:21:32 +01001470
Jeff King22f9b7f2020-07-28 16:24:27 -04001471 strvec_push(&fetch_argv, "fetch");
Björn Gustavsson8db35592009-11-10 09:21:32 +01001472
Michael Haggerty90765fa2013-10-30 06:33:04 +01001473 if (prune != -1)
Jeff King22f9b7f2020-07-28 16:24:27 -04001474 strvec_push(&fetch_argv, prune ? "--prune" : "--no-prune");
Björn Gustavsson8db35592009-11-10 09:21:32 +01001475 if (verbose)
Jeff King22f9b7f2020-07-28 16:24:27 -04001476 strvec_push(&fetch_argv, "-v");
1477 strvec_push(&fetch_argv, "--multiple");
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001478 if (argc < 2)
Jeff King22f9b7f2020-07-28 16:24:27 -04001479 strvec_push(&fetch_argv, "default");
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001480 for (i = 1; i < argc; i++)
Jeff King22f9b7f2020-07-28 16:24:27 -04001481 strvec_push(&fetch_argv, argv[i]);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001482
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001483 if (strcmp(fetch_argv.v[fetch_argv.nr-1], "default") == 0) {
Björn Gustavsson8db35592009-11-10 09:21:32 +01001484 git_config(get_remote_default, &default_defined);
Michael Haggerty86075902013-10-30 06:33:03 +01001485 if (!default_defined) {
Jeff King22f9b7f2020-07-28 16:24:27 -04001486 strvec_pop(&fetch_argv);
1487 strvec_push(&fetch_argv, "--all");
Michael Haggerty86075902013-10-30 06:33:03 +01001488 }
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001489 }
1490
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001491 retval = run_command_v_opt(fetch_argv.v, RUN_GIT_CMD);
Jeff King22f9b7f2020-07-28 16:24:27 -04001492 strvec_clear(&fetch_argv);
Michael Haggerty86075902013-10-30 06:33:03 +01001493 return retval;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001494}
1495
Jeff King113c29a2019-05-09 17:31:46 -04001496static int remove_all_fetch_refspecs(const char *key)
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001497{
Derrick Stolee504ee122020-11-25 22:12:49 +00001498 return git_config_set_multivar_gently(key, NULL, NULL,
1499 CONFIG_FLAGS_MULTI_REPLACE);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001500}
1501
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +01001502static void add_branches(struct remote *remote, const char **branches,
1503 const char *key)
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001504{
1505 const char *remotename = remote->name;
1506 int mirror = remote->mirror;
1507 struct strbuf refspec = STRBUF_INIT;
1508
1509 for (; *branches; branches++)
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +01001510 add_branch(key, *branches, remotename, mirror, &refspec);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001511
1512 strbuf_release(&refspec);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001513}
1514
1515static int set_remote_branches(const char *remotename, const char **branches,
1516 int add_mode)
1517{
1518 struct strbuf key = STRBUF_INIT;
1519 struct remote *remote;
1520
1521 strbuf_addf(&key, "remote.%s.fetch", remotename);
1522
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001523 remote = remote_get(remotename);
Ævar Arnfjörð Bjarmason9144ba42020-10-27 10:41:36 +01001524 if (!remote_is_configured(remote, 1)) {
1525 error(_("No such remote '%s'"), remotename);
1526 exit(2);
1527 }
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001528
Jeff King113c29a2019-05-09 17:31:46 -04001529 if (!add_mode && remove_all_fetch_refspecs(key.buf)) {
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001530 strbuf_release(&key);
1531 return 1;
1532 }
Patrick Steinhardtab5e4b62016-02-22 12:23:29 +01001533 add_branches(remote, branches, key.buf);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001534
1535 strbuf_release(&key);
1536 return 0;
1537}
1538
1539static int set_branches(int argc, const char **argv)
1540{
1541 int add_mode = 0;
1542 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001543 OPT_BOOL('\0', "add", &add_mode, N_("add branch")),
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001544 OPT_END()
1545 };
1546
1547 argc = parse_options(argc, argv, NULL, options,
1548 builtin_remote_setbranches_usage, 0);
1549 if (argc == 0) {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001550 error(_("no remote specified"));
Junio C Hamano656cdf02011-11-06 21:12:59 -08001551 usage_with_options(builtin_remote_setbranches_usage, options);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001552 }
1553 argv[argc] = NULL;
1554
1555 return set_remote_branches(argv[0], argv + 1, add_mode);
1556}
1557
Ben Boeckel96f78d32015-09-15 21:53:47 -04001558static int get_url(int argc, const char **argv)
1559{
1560 int i, push_mode = 0, all_mode = 0;
1561 const char *remotename = NULL;
1562 struct remote *remote;
1563 const char **url;
1564 int url_nr;
1565 struct option options[] = {
1566 OPT_BOOL('\0', "push", &push_mode,
1567 N_("query push URLs rather than fetch URLs")),
1568 OPT_BOOL('\0', "all", &all_mode,
1569 N_("return all URLs")),
1570 OPT_END()
1571 };
1572 argc = parse_options(argc, argv, NULL, options, builtin_remote_geturl_usage, 0);
1573
1574 if (argc != 1)
1575 usage_with_options(builtin_remote_geturl_usage, options);
1576
1577 remotename = argv[0];
1578
Ben Boeckel96f78d32015-09-15 21:53:47 -04001579 remote = remote_get(remotename);
Ævar Arnfjörð Bjarmason9144ba42020-10-27 10:41:36 +01001580 if (!remote_is_configured(remote, 1)) {
1581 error(_("No such remote '%s'"), remotename);
1582 exit(2);
1583 }
Ben Boeckel96f78d32015-09-15 21:53:47 -04001584
1585 url_nr = 0;
1586 if (push_mode) {
1587 url = remote->pushurl;
1588 url_nr = remote->pushurl_nr;
1589 }
1590 /* else fetch mode */
1591
1592 /* Use the fetch URL when no push URLs were found or requested. */
1593 if (!url_nr) {
1594 url = remote->url;
1595 url_nr = remote->url_nr;
1596 }
1597
1598 if (!url_nr)
1599 die(_("no URLs configured for remote '%s'"), remotename);
1600
1601 if (all_mode) {
1602 for (i = 0; i < url_nr; i++)
1603 printf_ln("%s", url[i]);
1604 } else {
1605 printf_ln("%s", *url);
1606 }
1607
1608 return 0;
1609}
1610
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001611static int set_url(int argc, const char **argv)
1612{
1613 int i, push_mode = 0, add_mode = 0, delete_mode = 0;
1614 int matches = 0, negative_matches = 0;
1615 const char *remotename = NULL;
1616 const char *newurl = NULL;
1617 const char *oldurl = NULL;
1618 struct remote *remote;
1619 regex_t old_regex;
1620 const char **urlset;
1621 int urlset_nr;
1622 struct strbuf name_buf = STRBUF_INIT;
1623 struct option options[] = {
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001624 OPT_BOOL('\0', "push", &push_mode,
1625 N_("manipulate push URLs")),
1626 OPT_BOOL('\0', "add", &add_mode,
1627 N_("add URL")),
1628 OPT_BOOL('\0', "delete", &delete_mode,
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +07001629 N_("delete URLs")),
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001630 OPT_END()
1631 };
Felipe Contrerasc49904e2011-11-07 05:36:57 +02001632 argc = parse_options(argc, argv, NULL, options, builtin_remote_seturl_usage,
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001633 PARSE_OPT_KEEP_ARGV0);
1634
1635 if (add_mode && delete_mode)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001636 die(_("--add --delete doesn't make sense"));
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001637
1638 if (argc < 3 || argc > 4 || ((add_mode || delete_mode) && argc != 3))
1639 usage_with_options(builtin_remote_seturl_usage, options);
1640
1641 remotename = argv[1];
1642 newurl = argv[2];
1643 if (argc > 3)
1644 oldurl = argv[3];
1645
1646 if (delete_mode)
1647 oldurl = newurl;
1648
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001649 remote = remote_get(remotename);
Ævar Arnfjörð Bjarmason9144ba42020-10-27 10:41:36 +01001650 if (!remote_is_configured(remote, 1)) {
1651 error(_("No such remote '%s'"), remotename);
1652 exit(2);
1653 }
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001654
1655 if (push_mode) {
1656 strbuf_addf(&name_buf, "remote.%s.pushurl", remotename);
1657 urlset = remote->pushurl;
1658 urlset_nr = remote->pushurl_nr;
1659 } else {
1660 strbuf_addf(&name_buf, "remote.%s.url", remotename);
1661 urlset = remote->url;
1662 urlset_nr = remote->url_nr;
1663 }
1664
1665 /* Special cases that add new entry. */
1666 if ((!oldurl && !delete_mode) || add_mode) {
1667 if (add_mode)
1668 git_config_set_multivar(name_buf.buf, newurl,
Patrick Steinhardt45ebdcc2016-02-22 12:23:28 +01001669 "^$", 0);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001670 else
1671 git_config_set(name_buf.buf, newurl);
Rene Scharfe85af9f72017-08-30 20:00:27 +02001672 goto out;
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001673 }
1674
1675 /* Old URL specified. Demand that one matches. */
1676 if (regcomp(&old_regex, oldurl, REG_EXTENDED))
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001677 die(_("Invalid old URL pattern: %s"), oldurl);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001678
1679 for (i = 0; i < urlset_nr; i++)
1680 if (!regexec(&old_regex, urlset[i], 0, NULL, 0))
1681 matches++;
1682 else
1683 negative_matches++;
1684 if (!delete_mode && !matches)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001685 die(_("No such URL found: %s"), oldurl);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001686 if (delete_mode && !negative_matches && !push_mode)
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001687 die(_("Will not delete all non-push URLs"));
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001688
1689 regfree(&old_regex);
1690
1691 if (!delete_mode)
1692 git_config_set_multivar(name_buf.buf, newurl, oldurl, 0);
1693 else
Derrick Stolee504ee122020-11-25 22:12:49 +00001694 git_config_set_multivar(name_buf.buf, NULL, oldurl,
1695 CONFIG_FLAGS_MULTI_REPLACE);
Rene Scharfe85af9f72017-08-30 20:00:27 +02001696out:
1697 strbuf_release(&name_buf);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001698 return 0;
1699}
1700
Johannes Schindelin211c8962008-02-29 01:45:45 +00001701int cmd_remote(int argc, const char **argv, const char *prefix)
1702{
1703 struct option options[] = {
Nguyễn Thái Ngọc Duyfbbae142012-08-20 19:32:35 +07001704 OPT__VERBOSE(&verbose, N_("be verbose; must be placed before a subcommand")),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001705 OPT_END()
1706 };
1707 int result;
1708
Stephen Boyd37782922009-05-23 11:53:12 -07001709 argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
Johannes Schindelin211c8962008-02-29 01:45:45 +00001710 PARSE_OPT_STOP_AT_NON_OPTION);
1711
1712 if (argc < 1)
1713 result = show_all();
1714 else if (!strcmp(argv[0], "add"))
1715 result = add(argc, argv);
Miklos Vajnabf984212008-11-03 19:26:18 +01001716 else if (!strcmp(argv[0], "rename"))
1717 result = mv(argc, argv);
Nguyễn Thái Ngọc Duye17dba82012-09-06 19:25:23 +07001718 else if (!strcmp(argv[0], "rm") || !strcmp(argv[0], "remove"))
Johannes Schindelin211c8962008-02-29 01:45:45 +00001719 result = rm(argc, argv);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001720 else if (!strcmp(argv[0], "set-head"))
1721 result = set_head(argc, argv);
Jonathan Nieder3d8b6942010-05-19 13:38:50 -05001722 else if (!strcmp(argv[0], "set-branches"))
1723 result = set_branches(argc, argv);
Ben Boeckel96f78d32015-09-15 21:53:47 -04001724 else if (!strcmp(argv[0], "get-url"))
1725 result = get_url(argc, argv);
Ilari Liusvaara433f2be2010-01-18 19:18:02 +02001726 else if (!strcmp(argv[0], "set-url"))
1727 result = set_url(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001728 else if (!strcmp(argv[0], "show"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001729 result = show(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001730 else if (!strcmp(argv[0], "prune"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001731 result = prune(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001732 else if (!strcmp(argv[0], "update"))
1733 result = update(argc, argv);
1734 else {
Nguyễn Thái Ngọc Duybb16d5d2012-04-23 19:30:26 +07001735 error(_("Unknown subcommand: %s"), argv[0]);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001736 usage_with_options(builtin_remote_usage, options);
1737 }
1738
1739 return result ? 1 : 0;
1740}