]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/remote.c
Merge branch 'ea/blame-use-oideq'
[thirdparty/git.git] / builtin / remote.c
CommitLineData
c2e86add 1#include "builtin.h"
b2141fc1 2#include "config.h"
211c8968
JS
3#include "parse-options.h"
4#include "transport.h"
5#include "remote.h"
c455c87c 6#include "string-list.h"
211c8968
JS
7#include "strbuf.h"
8#include "run-command.h"
88f8576e 9#include "rebase.h"
211c8968 10#include "refs.h"
ec0cb496 11#include "refspec.h"
cbd53a21 12#include "object-store.h"
dbbcd44f 13#include "strvec.h"
1d614d41 14#include "commit-reach.h"
211c8968
JS
15
16static const char * const builtin_remote_usage[] = {
fbbae140 17 N_("git remote [-v | --verbose]"),
9c9b4f2f 18 N_("git remote add [-t <branch>] [-m <master>] [-f] [--tags | --no-tags] [--mirror=<fetch|push>] <name> <url>"),
fbbae140 19 N_("git remote rename <old> <new>"),
90585604 20 N_("git remote remove <name>"),
9c9b4f2f 21 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
fbbae140
NTND
22 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>..."),
96f78d39 26 N_("git remote get-url [--push] [--all] <name>"),
fbbae140
NTND
27 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>"),
211c8968
JS
30 NULL
31};
32
4504107d 33static const char * const builtin_remote_add_usage[] = {
fbbae140 34 N_("git remote add [<options>] <name> <url>"),
4504107d
TH
35 NULL
36};
37
38static const char * const builtin_remote_rename_usage[] = {
fbbae140 39 N_("git remote rename <old> <new>"),
4504107d
TH
40 NULL
41};
42
43static const char * const builtin_remote_rm_usage[] = {
90585604 44 N_("git remote remove <name>"),
4504107d
TH
45 NULL
46};
47
48static const char * const builtin_remote_sethead_usage[] = {
e49c8f33 49 N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"),
4504107d
TH
50 NULL
51};
52
3d8b6949 53static const char * const builtin_remote_setbranches_usage[] = {
fbbae140
NTND
54 N_("git remote set-branches <name> <branch>..."),
55 N_("git remote set-branches --add <name> <branch>..."),
3d8b6949
JN
56 NULL
57};
58
4504107d 59static const char * const builtin_remote_show_usage[] = {
fbbae140 60 N_("git remote show [<options>] <name>"),
4504107d
TH
61 NULL
62};
63
64static const char * const builtin_remote_prune_usage[] = {
fbbae140 65 N_("git remote prune [<options>] <name>"),
4504107d
TH
66 NULL
67};
68
69static const char * const builtin_remote_update_usage[] = {
fbbae140 70 N_("git remote update [<options>] [<group> | <remote>]..."),
4504107d
TH
71 NULL
72};
73
96f78d39
BB
74static const char * const builtin_remote_geturl_usage[] = {
75 N_("git remote get-url [--push] [--all] <name>"),
76 NULL
77};
78
433f2be1 79static const char * const builtin_remote_seturl_usage[] = {
fbbae140
NTND
80 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>"),
433f2be1
IL
83 NULL
84};
85
e61e0cc6
JS
86#define GET_REF_STATES (1<<0)
87#define GET_HEAD_NAMES (1<<1)
e5dcbfd9 88#define GET_PUSH_REF_STATES (1<<2)
e61e0cc6 89
211c8968
JS
90static int verbose;
91
211c8968
JS
92static int fetch_remote(const char *name)
93{
dbbd56f1
CR
94 const char *argv[] = { "fetch", name, NULL, NULL };
95 if (verbose) {
96 argv[1] = "-v";
97 argv[2] = name;
98 }
bb16d5dd 99 printf_ln(_("Updating %s"), name);
211c8968 100 if (run_command_v_opt(argv, RUN_GIT_CMD))
bb16d5dd 101 return error(_("Could not fetch %s"), name);
211c8968
JS
102 return 0;
103}
104
111fb858
ST
105enum {
106 TAGS_UNSET = 0,
107 TAGS_DEFAULT = 1,
108 TAGS_SET = 2
109};
110
a9f5a355
JK
111#define MIRROR_NONE 0
112#define MIRROR_FETCH 1
113#define MIRROR_PUSH 2
114#define MIRROR_BOTH (MIRROR_FETCH|MIRROR_PUSH)
115
ab5e4b67
PS
116static void add_branch(const char *key, const char *branchname,
117 const char *remotename, int mirror, struct strbuf *tmp)
3d8b6949
JN
118{
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);
3d180648 127 git_config_set_multivar(key, tmp->buf, "^$", 0);
3d8b6949
JN
128}
129
09902486 130static const char mirror_advice[] =
bb16d5dd
NTND
131N_("--mirror is dangerous and deprecated; please\n"
132 "\t use --mirror=fetch or --mirror=push instead");
09902486 133
a9f5a355
JK
134static 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;
09902486 139 else if (!arg) {
bb16d5dd 140 warning("%s", _(mirror_advice));
a9f5a355 141 *mirror = MIRROR_BOTH;
09902486 142 }
a9f5a355
JK
143 else if (!strcmp(arg, "fetch"))
144 *mirror = MIRROR_FETCH;
145 else if (!strcmp(arg, "push"))
146 *mirror = MIRROR_PUSH;
147 else
bb16d5dd 148 return error(_("unknown mirror argument: %s"), arg);
a9f5a355
JK
149 return 0;
150}
151
211c8968
JS
152static int add(int argc, const char **argv)
153{
a9f5a355
JK
154 int fetch = 0, fetch_tags = TAGS_DEFAULT;
155 unsigned mirror = MIRROR_NONE;
183113a5 156 struct string_list track = STRING_LIST_INIT_NODUP;
211c8968
JS
157 const char *master = NULL;
158 struct remote *remote;
f285a2d7 159 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
211c8968
JS
160 const char *name, *url;
161 int i;
162
163 struct option options[] = {
d5d09d47 164 OPT_BOOL('f', "fetch", &fetch, N_("fetch the remote branches")),
111fb858 165 OPT_SET_INT(0, "tags", &fetch_tags,
fbbae140 166 N_("import all tags and associated objects when fetching"),
111fb858
ST
167 TAGS_SET),
168 OPT_SET_INT(0, NULL, &fetch_tags,
fbbae140
NTND
169 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")),
203c8533 173 OPT_CALLBACK_F(0, "mirror", &mirror, "(push|fetch)",
fbbae140 174 N_("set up remote as a mirror to push to or fetch from"),
203c8533 175 PARSE_OPT_OPTARG | PARSE_OPT_COMP_ARG, parse_mirror_opt),
211c8968
JS
176 OPT_END()
177 };
178
4504107d 179 argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
37782920 180 0);
211c8968 181
2d2e3d25 182 if (argc != 2)
4504107d 183 usage_with_options(builtin_remote_add_usage, options);
211c8968 184
13fc2c18 185 if (mirror && master)
bb16d5dd 186 die(_("specifying a master branch makes no sense with --mirror"));
3eafdc96 187 if (mirror && !(mirror & MIRROR_FETCH) && track.nr)
bb16d5dd 188 die(_("specifying branches to track makes sense only with fetch mirrors"));
13fc2c18 189
211c8968
JS
190 name = argv[0];
191 url = argv[1];
192
193 remote = remote_get(name);
e459b073 194 if (remote_is_configured(remote, 1))
bb16d5dd 195 die(_("remote %s already exists."), name);
211c8968 196
24b6177e
JF
197 strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
198 if (!valid_fetch_refspec(buf2.buf))
bb16d5dd 199 die(_("'%s' is not a valid remote name"), name);
24b6177e 200
211c8968 201 strbuf_addf(&buf, "remote.%s.url", name);
3d180648 202 git_config_set(buf.buf, url);
211c8968 203
a9f5a355
JK
204 if (!mirror || mirror & MIRROR_FETCH) {
205 strbuf_reset(&buf);
206 strbuf_addf(&buf, "remote.%s.fetch", name);
207 if (track.nr == 0)
208 string_list_append(&track, "*");
209 for (i = 0; i < track.nr; i++) {
ab5e4b67
PS
210 add_branch(buf.buf, track.items[i].string,
211 name, mirror, &buf2);
a9f5a355 212 }
211c8968
JS
213 }
214
a9f5a355 215 if (mirror & MIRROR_PUSH) {
84bb2dfd
PB
216 strbuf_reset(&buf);
217 strbuf_addf(&buf, "remote.%s.mirror", name);
3d180648 218 git_config_set(buf.buf, "true");
84bb2dfd
PB
219 }
220
111fb858
ST
221 if (fetch_tags != TAGS_DEFAULT) {
222 strbuf_reset(&buf);
223 strbuf_addf(&buf, "remote.%s.tagopt", name);
3d180648
PS
224 git_config_set(buf.buf,
225 fetch_tags == TAGS_SET ? "--tags" : "--no-tags");
111fb858
ST
226 }
227
211c8968
JS
228 if (fetch && fetch_remote(name))
229 return 1;
230
231 if (master) {
232 strbuf_reset(&buf);
233 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
234
235 strbuf_reset(&buf2);
236 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
237
238 if (create_symref(buf.buf, buf2.buf, "remote add"))
bb16d5dd 239 return error(_("Could not setup master '%s'"), master);
211c8968
JS
240 }
241
242 strbuf_release(&buf);
243 strbuf_release(&buf2);
c455c87c 244 string_list_clear(&track, 0);
211c8968
JS
245
246 return 0;
247}
248
249struct branch_info {
e0cc81e6 250 char *remote_name;
c455c87c 251 struct string_list merge;
88f8576e 252 enum rebase_type rebase;
923d4a5c 253 char *push_remote_name;
211c8968
JS
254};
255
2721ce21 256static struct string_list branch_list = STRING_LIST_INIT_NODUP;
211c8968 257
72972eb3
JH
258static const char *abbrev_ref(const char *name, const char *prefix)
259{
cf4fff57 260 skip_prefix(name, prefix, &name);
72972eb3
JH
261 return name;
262}
263#define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
264
ef90d6d4 265static int config_read_branches(const char *key, const char *value, void *cb)
211c8968 266{
1a83068c
BW
267 const char *orig_key = key;
268 char *name;
269 struct string_list_item *item;
270 struct branch_info *info;
923d4a5c 271 enum { REMOTE, MERGE, REBASE, PUSH_REMOTE } type;
1a83068c
BW
272 size_t key_len;
273
274 if (!starts_with(key, "branch."))
275 return 0;
276
ceff1a13
BW
277 key += strlen("branch.");
278 if (strip_suffix(key, ".remote", &key_len))
1a83068c 279 type = REMOTE;
ceff1a13 280 else if (strip_suffix(key, ".merge", &key_len))
1a83068c 281 type = MERGE;
ceff1a13 282 else if (strip_suffix(key, ".rebase", &key_len))
1a83068c 283 type = REBASE;
923d4a5c
BW
284 else if (strip_suffix(key, ".pushremote", &key_len))
285 type = PUSH_REMOTE;
ceff1a13 286 else
1a83068c 287 return 0;
ceff1a13 288 name = xmemdupz(key, key_len);
1a83068c
BW
289
290 item = string_list_insert(&branch_list, name);
291
292 if (!item->util)
293 item->util = xcalloc(1, sizeof(struct branch_info));
294 info = item->util;
ceff1a13
BW
295 switch (type) {
296 case REMOTE:
1a83068c
BW
297 if (info->remote_name)
298 warning(_("more than one %s"), orig_key);
299 info->remote_name = xstrdup(value);
ceff1a13
BW
300 break;
301 case MERGE: {
1a83068c
BW
302 char *space = strchr(value, ' ');
303 value = abbrev_branch(value);
304 while (space) {
305 char *merge;
306 merge = xstrndup(value, space - value);
307 string_list_append(&info->merge, merge);
308 value = abbrev_branch(space + 1);
309 space = strchr(value, ' ');
310 }
311 string_list_append(&info->merge, xstrdup(value));
ceff1a13
BW
312 break;
313 }
314 case REBASE:
1a83068c
BW
315 /*
316 * Consider invalid values as false and check the
317 * truth value with >= REBASE_TRUE.
318 */
319 info->rebase = rebase_parse_value(value);
ceff1a13 320 break;
923d4a5c
BW
321 case PUSH_REMOTE:
322 if (info->push_remote_name)
323 warning(_("more than one %s"), orig_key);
324 info->push_remote_name = xstrdup(value);
325 break;
ceff1a13
BW
326 default:
327 BUG("unexpected type=%d", type);
328 }
1a83068c 329
211c8968
JS
330 return 0;
331}
332
333static void read_branches(void)
334{
335 if (branch_list.nr)
336 return;
ef90d6d4 337 git_config(config_read_branches, NULL);
211c8968
JS
338}
339
340struct ref_states {
341 struct remote *remote;
b537e0b1 342 struct string_list new_refs, stale, tracked, heads, push;
7ecbbf87 343 int queried;
211c8968
JS
344};
345
e0cc81e6 346static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
211c8968
JS
347{
348 struct ref *fetch_map = NULL, **tail = &fetch_map;
f2ef6075 349 struct ref *ref, *stale_refs;
211c8968
JS
350 int i;
351
e5349abf
BW
352 for (i = 0; i < states->remote->fetch.nr; i++)
353 if (get_fetch_map(remote_refs, &states->remote->fetch.items[i], &tail, 1))
bb16d5dd 354 die(_("Could not get fetch map for refspec %s"),
e5349abf 355 states->remote->fetch.raw[i]);
211c8968 356
b537e0b1 357 states->new_refs.strdup_strings = 1;
92f676fc
BW
358 states->tracked.strdup_strings = 1;
359 states->stale.strdup_strings = 1;
211c8968 360 for (ref = fetch_map; ref; ref = ref->next) {
c6893323 361 if (!ref->peer_ref || !ref_exists(ref->peer_ref->name))
b537e0b1 362 string_list_append(&states->new_refs, abbrev_branch(ref->name));
7b9a5e27 363 else
1d2f80fa 364 string_list_append(&states->tracked, abbrev_branch(ref->name));
211c8968 365 }
a2ac50cb 366 stale_refs = get_stale_heads(&states->remote->fetch, fetch_map);
f2ef6075
JS
367 for (ref = stale_refs; ref; ref = ref->next) {
368 struct string_list_item *item =
1d2f80fa 369 string_list_append(&states->stale, abbrev_branch(ref->name));
f2ef6075
JS
370 item->util = xstrdup(ref->name);
371 }
372 free_refs(stale_refs);
211c8968
JS
373 free_refs(fetch_map);
374
b537e0b1 375 string_list_sort(&states->new_refs);
3383e199
MH
376 string_list_sort(&states->tracked);
377 string_list_sort(&states->stale);
211c8968
JS
378
379 return 0;
380}
381
e5dcbfd9
JS
382struct push_info {
383 char *dest;
384 int forced;
385 enum {
386 PUSH_STATUS_CREATE = 0,
387 PUSH_STATUS_DELETE,
388 PUSH_STATUS_UPTODATE,
389 PUSH_STATUS_FASTFORWARD,
390 PUSH_STATUS_OUTOFDATE,
4b05548f 391 PUSH_STATUS_NOTQUERIED
e5dcbfd9
JS
392 } status;
393};
394
395static int get_push_ref_states(const struct ref *remote_refs,
396 struct ref_states *states)
397{
398 struct remote *remote = states->remote;
6d2bf96e 399 struct ref *ref, *local_refs, *push_map;
e5dcbfd9
JS
400 if (remote->mirror)
401 return 0;
402
403 local_refs = get_local_heads();
6a01554e 404 push_map = copy_ref_list(remote_refs);
e5dcbfd9 405
5c7ec846 406 match_push_refs(local_refs, &push_map, &remote->push, MATCH_REFS_NONE);
e5dcbfd9
JS
407
408 states->push.strdup_strings = 1;
409 for (ref = push_map; ref; ref = ref->next) {
410 struct string_list_item *item;
411 struct push_info *info;
412
413 if (!ref->peer_ref)
414 continue;
f4e54d02 415 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
e5dcbfd9 416
1d2f80fa
JP
417 item = string_list_append(&states->push,
418 abbrev_branch(ref->peer_ref->name));
38069454 419 item->util = xcalloc(1, sizeof(struct push_info));
e5dcbfd9
JS
420 info = item->util;
421 info->forced = ref->force;
422 info->dest = xstrdup(abbrev_branch(ref->name));
423
f4e54d02 424 if (is_null_oid(&ref->new_oid)) {
e5dcbfd9 425 info->status = PUSH_STATUS_DELETE;
4a7e27e9 426 } else if (oideq(&ref->old_oid, &ref->new_oid))
e5dcbfd9 427 info->status = PUSH_STATUS_UPTODATE;
f4e54d02 428 else if (is_null_oid(&ref->old_oid))
e5dcbfd9 429 info->status = PUSH_STATUS_CREATE;
f4e54d02 430 else if (has_object_file(&ref->old_oid) &&
6f3d57b6 431 ref_newer(&ref->new_oid, &ref->old_oid))
e5dcbfd9
JS
432 info->status = PUSH_STATUS_FASTFORWARD;
433 else
434 info->status = PUSH_STATUS_OUTOFDATE;
e5dcbfd9
JS
435 }
436 free_refs(local_refs);
437 free_refs(push_map);
438 return 0;
439}
440
441static int get_push_ref_states_noquery(struct ref_states *states)
442{
443 int i;
444 struct remote *remote = states->remote;
445 struct string_list_item *item;
446 struct push_info *info;
447
448 if (remote->mirror)
449 return 0;
450
451 states->push.strdup_strings = 1;
6bdb304b 452 if (!remote->push.nr) {
bb16d5dd 453 item = string_list_append(&states->push, _("(matching)"));
38069454 454 info = item->util = xcalloc(1, sizeof(struct push_info));
e5dcbfd9
JS
455 info->status = PUSH_STATUS_NOTQUERIED;
456 info->dest = xstrdup(item->string);
457 }
6bdb304b
BW
458 for (i = 0; i < remote->push.nr; i++) {
459 const struct refspec_item *spec = &remote->push.items[i];
e5dcbfd9 460 if (spec->matching)
bb16d5dd 461 item = string_list_append(&states->push, _("(matching)"));
5ad6b025 462 else if (strlen(spec->src))
1d2f80fa 463 item = string_list_append(&states->push, spec->src);
e5dcbfd9 464 else
bb16d5dd 465 item = string_list_append(&states->push, _("(delete)"));
e5dcbfd9 466
38069454 467 info = item->util = xcalloc(1, sizeof(struct push_info));
e5dcbfd9
JS
468 info->forced = spec->force;
469 info->status = PUSH_STATUS_NOTQUERIED;
5ad6b025 470 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
e5dcbfd9
JS
471 }
472 return 0;
473}
474
e61e0cc6
JS
475static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
476{
477 struct ref *ref, *matches;
478 struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
0ad4a5ff 479 struct refspec_item refspec;
e61e0cc6 480
95e7c385 481 memset(&refspec, 0, sizeof(refspec));
e61e0cc6
JS
482 refspec.force = 0;
483 refspec.pattern = 1;
5ad6b025 484 refspec.src = refspec.dst = "refs/heads/*";
e61e0cc6
JS
485 states->heads.strdup_strings = 1;
486 get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
487 matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
488 fetch_map, 1);
eeefa7c9 489 for (ref = matches; ref; ref = ref->next)
1d2f80fa 490 string_list_append(&states->heads, abbrev_branch(ref->name));
e61e0cc6
JS
491
492 free_refs(fetch_map);
493 free_refs(matches);
494
495 return 0;
496}
497
7ad2458f
SP
498struct known_remote {
499 struct known_remote *next;
500 struct remote *remote;
501};
502
503struct known_remotes {
504 struct remote *to_delete;
505 struct known_remote *list;
506};
507
508static int add_known_remote(struct remote *remote, void *cb_data)
509{
510 struct known_remotes *all = cb_data;
511 struct known_remote *r;
512
513 if (!strcmp(all->to_delete->name, remote->name))
514 return 0;
515
516 r = xmalloc(sizeof(*r));
517 r->remote = remote;
518 r->next = all->list;
519 all->list = r;
520 return 0;
521}
522
211c8968 523struct branches_for_remote {
7ad2458f 524 struct remote *remote;
441adf0c 525 struct string_list *branches, *skipped;
7ad2458f 526 struct known_remotes *keep;
211c8968
JS
527};
528
529static int add_branch_for_removal(const char *refname,
45690a57 530 const struct object_id *oid, int flags, void *cb_data)
211c8968
JS
531{
532 struct branches_for_remote *branches = cb_data;
0ad4a5ff 533 struct refspec_item refspec;
7ad2458f 534 struct known_remote *kr;
211c8968 535
7ad2458f
SP
536 memset(&refspec, 0, sizeof(refspec));
537 refspec.dst = (char *)refname;
538 if (remote_find_tracking(branches->remote, &refspec))
539 return 0;
540
541 /* don't delete a branch if another remote also uses it */
542 for (kr = branches->keep->list; kr; kr = kr->next) {
543 memset(&refspec, 0, sizeof(refspec));
544 refspec.dst = (char *)refname;
545 if (!remote_find_tracking(kr->remote, &refspec))
546 return 0;
547 }
3b9dcff5 548
13931236 549 /* don't delete non-remote-tracking refs */
59556548 550 if (!starts_with(refname, "refs/remotes/")) {
441adf0c 551 /* advise user how to delete local branches */
59556548 552 if (starts_with(refname, "refs/heads/"))
1d2f80fa
JP
553 string_list_append(branches->skipped,
554 abbrev_branch(refname));
441adf0c
JS
555 /* silently skip over other non-remote refs */
556 return 0;
557 }
558
e26cdf91 559 string_list_append(branches->branches, refname);
211c8968
JS
560
561 return 0;
562}
563
bf98421a 564struct rename_info {
b537e0b1
BW
565 const char *old_name;
566 const char *new_name;
bf98421a
MV
567 struct string_list *remote_branches;
568};
569
570static int read_remote_branches(const char *refname,
53dc95b5 571 const struct object_id *oid, int flags, void *cb_data)
bf98421a
MV
572{
573 struct rename_info *rename = cb_data;
574 struct strbuf buf = STRBUF_INIT;
575 struct string_list_item *item;
576 int flag;
bf98421a
MV
577 const char *symref;
578
b537e0b1 579 strbuf_addf(&buf, "refs/remotes/%s/", rename->old_name);
59556548 580 if (starts_with(refname, buf.buf)) {
fe583c6c 581 item = string_list_append(rename->remote_branches, refname);
7695d118 582 symref = resolve_ref_unsafe(refname, RESOLVE_REF_READING,
744c040b 583 NULL, &flag);
752848df 584 if (symref && (flag & REF_ISSYMREF))
bf98421a
MV
585 item->util = xstrdup(symref);
586 else
587 item->util = NULL;
588 }
e2581b72 589 strbuf_release(&buf);
bf98421a
MV
590
591 return 0;
592}
593
1dd1239a
MV
594static int migrate_file(struct remote *remote)
595{
596 struct strbuf buf = STRBUF_INIT;
597 int i;
1dd1239a
MV
598
599 strbuf_addf(&buf, "remote.%s.url", remote->name);
600 for (i = 0; i < remote->url_nr; i++)
3d180648 601 git_config_set_multivar(buf.buf, remote->url[i], "^$", 0);
1dd1239a
MV
602 strbuf_reset(&buf);
603 strbuf_addf(&buf, "remote.%s.push", remote->name);
6bdb304b
BW
604 for (i = 0; i < remote->push.raw_nr; i++)
605 git_config_set_multivar(buf.buf, remote->push.raw[i], "^$", 0);
1dd1239a
MV
606 strbuf_reset(&buf);
607 strbuf_addf(&buf, "remote.%s.fetch", remote->name);
e5349abf
BW
608 for (i = 0; i < remote->fetch.raw_nr; i++)
609 git_config_set_multivar(buf.buf, remote->fetch.raw[i], "^$", 0);
1dd1239a 610 if (remote->origin == REMOTE_REMOTES)
b21a5d66 611 unlink_or_warn(git_path("remotes/%s", remote->name));
1dd1239a 612 else if (remote->origin == REMOTE_BRANCHES)
b21a5d66 613 unlink_or_warn(git_path("branches/%s", remote->name));
b95c8ce8 614 strbuf_release(&buf);
c397debf 615
1dd1239a
MV
616 return 0;
617}
618
b3fd6cbf
BW
619struct push_default_info
620{
621 const char *old_name;
622 enum config_scope scope;
623 struct strbuf origin;
624 int linenr;
625};
626
627static int config_read_push_default(const char *key, const char *value,
628 void *cb)
629{
630 struct push_default_info* info = cb;
631 if (strcmp(key, "remote.pushdefault") ||
632 !value || strcmp(value, info->old_name))
633 return 0;
634
635 info->scope = current_config_scope();
636 strbuf_reset(&info->origin);
637 strbuf_addstr(&info->origin, current_config_name());
638 info->linenr = current_config_line();
639
640 return 0;
641}
642
643static void handle_push_default(const char* old_name, const char* new_name)
644{
645 struct push_default_info push_default = {
646 old_name, CONFIG_SCOPE_UNKNOWN, STRBUF_INIT, -1 };
647 git_config(config_read_push_default, &push_default);
648 if (push_default.scope >= CONFIG_SCOPE_COMMAND)
649 ; /* pass */
650 else if (push_default.scope >= CONFIG_SCOPE_LOCAL) {
651 int result = git_config_set_gently("remote.pushDefault",
652 new_name);
653 if (new_name && result && result != CONFIG_NOTHING_SET)
654 die(_("could not set '%s'"), "remote.pushDefault");
655 else if (!new_name && result && result != CONFIG_NOTHING_SET)
656 die(_("could not unset '%s'"), "remote.pushDefault");
657 } else if (push_default.scope >= CONFIG_SCOPE_SYSTEM) {
658 /* warn */
659 warning(_("The %s configuration remote.pushDefault in:\n"
660 "\t%s:%d\n"
661 "now names the non-existent remote '%s'"),
662 config_scope_name(push_default.scope),
663 push_default.origin.buf, push_default.linenr,
664 old_name);
665 }
666}
667
668
bf98421a
MV
669static int mv(int argc, const char **argv)
670{
671 struct option options[] = {
672 OPT_END()
673 };
674 struct remote *oldremote, *newremote;
28f555f6
MZ
675 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT,
676 old_remote_context = STRBUF_INIT;
fe583c6c 677 struct string_list remote_branches = STRING_LIST_INIT_DUP;
bf98421a 678 struct rename_info rename;
b52d00ae 679 int i, refspec_updated = 0;
bf98421a
MV
680
681 if (argc != 3)
4504107d 682 usage_with_options(builtin_remote_rename_usage, options);
bf98421a 683
b537e0b1
BW
684 rename.old_name = argv[1];
685 rename.new_name = argv[2];
bf98421a
MV
686 rename.remote_branches = &remote_branches;
687
b537e0b1 688 oldremote = remote_get(rename.old_name);
e459b073 689 if (!remote_is_configured(oldremote, 1))
5025425d 690 die(_("No such remote: '%s'"), rename.old_name);
bf98421a 691
b537e0b1 692 if (!strcmp(rename.old_name, rename.new_name) && oldremote->origin != REMOTE_CONFIG)
1dd1239a
MV
693 return migrate_file(oldremote);
694
b537e0b1 695 newremote = remote_get(rename.new_name);
e459b073 696 if (remote_is_configured(newremote, 1))
b537e0b1 697 die(_("remote %s already exists."), rename.new_name);
bf98421a 698
b537e0b1 699 strbuf_addf(&buf, "refs/heads/test:refs/remotes/%s/test", rename.new_name);
bf98421a 700 if (!valid_fetch_refspec(buf.buf))
b537e0b1 701 die(_("'%s' is not a valid remote name"), rename.new_name);
bf98421a
MV
702
703 strbuf_reset(&buf);
b537e0b1
BW
704 strbuf_addf(&buf, "remote.%s", rename.old_name);
705 strbuf_addf(&buf2, "remote.%s", rename.new_name);
bf98421a 706 if (git_config_rename_section(buf.buf, buf2.buf) < 1)
bb16d5dd 707 return error(_("Could not rename config section '%s' to '%s'"),
bf98421a
MV
708 buf.buf, buf2.buf);
709
710 strbuf_reset(&buf);
b537e0b1 711 strbuf_addf(&buf, "remote.%s.fetch", rename.new_name);
3d180648 712 git_config_set_multivar(buf.buf, NULL, NULL, 1);
b537e0b1 713 strbuf_addf(&old_remote_context, ":refs/remotes/%s/", rename.old_name);
e5349abf 714 for (i = 0; i < oldremote->fetch.raw_nr; i++) {
bf98421a
MV
715 char *ptr;
716
717 strbuf_reset(&buf2);
e5349abf 718 strbuf_addstr(&buf2, oldremote->fetch.raw[i]);
28f555f6 719 ptr = strstr(buf2.buf, old_remote_context.buf);
b52d00ae
MZ
720 if (ptr) {
721 refspec_updated = 1;
28f555f6
MZ
722 strbuf_splice(&buf2,
723 ptr-buf2.buf + strlen(":refs/remotes/"),
b537e0b1
BW
724 strlen(rename.old_name), rename.new_name,
725 strlen(rename.new_name));
b52d00ae 726 } else
aa3bb871 727 warning(_("Not updating non-default fetch refspec\n"
bb16d5dd
NTND
728 "\t%s\n"
729 "\tPlease update the configuration manually if necessary."),
1822b86a
MZ
730 buf2.buf);
731
3d180648 732 git_config_set_multivar(buf.buf, buf2.buf, "^$", 0);
bf98421a
MV
733 }
734
735 read_branches();
736 for (i = 0; i < branch_list.nr; i++) {
737 struct string_list_item *item = branch_list.items + i;
738 struct branch_info *info = item->util;
b537e0b1 739 if (info->remote_name && !strcmp(info->remote_name, rename.old_name)) {
bf98421a
MV
740 strbuf_reset(&buf);
741 strbuf_addf(&buf, "branch.%s.remote", item->string);
b537e0b1 742 git_config_set(buf.buf, rename.new_name);
bf98421a 743 }
923d4a5c
BW
744 if (info->push_remote_name && !strcmp(info->push_remote_name, rename.old_name)) {
745 strbuf_reset(&buf);
746 strbuf_addf(&buf, "branch.%s.pushremote", item->string);
747 git_config_set(buf.buf, rename.new_name);
748 }
bf98421a
MV
749 }
750
b52d00ae
MZ
751 if (!refspec_updated)
752 return 0;
753
bf98421a
MV
754 /*
755 * First remove symrefs, then rename the rest, finally create
756 * the new symrefs.
757 */
53dc95b5 758 for_each_ref(read_remote_branches, &rename);
bf98421a
MV
759 for (i = 0; i < remote_branches.nr; i++) {
760 struct string_list_item *item = remote_branches.items + i;
761 int flag = 0;
bf98421a 762
99f86bde 763 read_ref_full(item->string, RESOLVE_REF_READING, NULL, &flag);
bf98421a
MV
764 if (!(flag & REF_ISSYMREF))
765 continue;
91774afc 766 if (delete_ref(NULL, item->string, NULL, REF_NO_DEREF))
bb16d5dd 767 die(_("deleting '%s' failed"), item->string);
bf98421a
MV
768 }
769 for (i = 0; i < remote_branches.nr; i++) {
770 struct string_list_item *item = remote_branches.items + i;
771
772 if (item->util)
773 continue;
774 strbuf_reset(&buf);
775 strbuf_addstr(&buf, item->string);
b537e0b1
BW
776 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old_name),
777 rename.new_name, strlen(rename.new_name));
bf98421a
MV
778 strbuf_reset(&buf2);
779 strbuf_addf(&buf2, "remote: renamed %s to %s",
780 item->string, buf.buf);
781 if (rename_ref(item->string, buf.buf, buf2.buf))
bb16d5dd 782 die(_("renaming '%s' failed"), item->string);
bf98421a
MV
783 }
784 for (i = 0; i < remote_branches.nr; i++) {
785 struct string_list_item *item = remote_branches.items + i;
786
787 if (!item->util)
788 continue;
789 strbuf_reset(&buf);
790 strbuf_addstr(&buf, item->string);
b537e0b1
BW
791 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old_name),
792 rename.new_name, strlen(rename.new_name));
bf98421a
MV
793 strbuf_reset(&buf2);
794 strbuf_addstr(&buf2, item->util);
b537e0b1
BW
795 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old_name),
796 rename.new_name, strlen(rename.new_name));
bf98421a
MV
797 strbuf_reset(&buf3);
798 strbuf_addf(&buf3, "remote: renamed %s to %s",
799 item->string, buf.buf);
800 if (create_symref(buf.buf, buf2.buf, buf3.buf))
bb16d5dd 801 die(_("creating '%s' failed"), buf.buf);
bf98421a 802 }
fe583c6c 803 string_list_clear(&remote_branches, 1);
b3fd6cbf
BW
804
805 handle_push_default(rename.old_name, rename.new_name);
806
bf98421a
MV
807 return 0;
808}
809
211c8968
JS
810static int rm(int argc, const char **argv)
811{
812 struct option options[] = {
813 OPT_END()
814 };
815 struct remote *remote;
f285a2d7 816 struct strbuf buf = STRBUF_INIT;
7ad2458f 817 struct known_remotes known_remotes = { NULL, NULL };
183113a5
TF
818 struct string_list branches = STRING_LIST_INIT_DUP;
819 struct string_list skipped = STRING_LIST_INIT_DUP;
66dbfd55 820 struct branches_for_remote cb_data;
e02f1762 821 int i, result;
211c8968 822
66dbfd55
GV
823 memset(&cb_data, 0, sizeof(cb_data));
824 cb_data.branches = &branches;
825 cb_data.skipped = &skipped;
826 cb_data.keep = &known_remotes;
827
211c8968 828 if (argc != 2)
4504107d 829 usage_with_options(builtin_remote_rm_usage, options);
211c8968
JS
830
831 remote = remote_get(argv[1]);
e459b073 832 if (!remote_is_configured(remote, 1))
5025425d 833 die(_("No such remote: '%s'"), argv[1]);
211c8968 834
7ad2458f
SP
835 known_remotes.to_delete = remote;
836 for_each_remote(add_known_remote, &known_remotes);
837
211c8968
JS
838 read_branches();
839 for (i = 0; i < branch_list.nr; i++) {
c455c87c 840 struct string_list_item *item = branch_list.items + i;
211c8968 841 struct branch_info *info = item->util;
e0cc81e6 842 if (info->remote_name && !strcmp(info->remote_name, remote->name)) {
211c8968
JS
843 const char *keys[] = { "remote", "merge", NULL }, **k;
844 for (k = keys; *k; k++) {
845 strbuf_reset(&buf);
846 strbuf_addf(&buf, "branch.%s.%s",
c455c87c 847 item->string, *k);
20690b21
RL
848 result = git_config_set_gently(buf.buf, NULL);
849 if (result && result != CONFIG_NOTHING_SET)
850 die(_("could not unset '%s'"), buf.buf);
211c8968
JS
851 }
852 }
923d4a5c
BW
853 if (info->push_remote_name && !strcmp(info->push_remote_name, remote->name)) {
854 strbuf_reset(&buf);
855 strbuf_addf(&buf, "branch.%s.pushremote", item->string);
856 result = git_config_set_gently(buf.buf, NULL);
857 if (result && result != CONFIG_NOTHING_SET)
858 die(_("could not unset '%s'"), buf.buf);
859 }
211c8968
JS
860 }
861
862 /*
863 * We cannot just pass a function to for_each_ref() which deletes
864 * the branches one by one, since for_each_ref() relies on cached
865 * refs, which are invalidated when deleting a branch.
866 */
7ad2458f 867 cb_data.remote = remote;
45690a57 868 result = for_each_ref(add_branch_for_removal, &cb_data);
211c8968
JS
869 strbuf_release(&buf);
870
e02f1762 871 if (!result)
91774afc 872 result = delete_refs("remote: remove", &branches, REF_NO_DEREF);
e26cdf91 873 string_list_clear(&branches, 0);
211c8968 874
441adf0c 875 if (skipped.nr) {
bb16d5dd
NTND
876 fprintf_ln(stderr,
877 Q_("Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"
878 "to delete it, use:",
879 "Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"
880 "to delete them, use:",
881 skipped.nr));
441adf0c
JS
882 for (i = 0; i < skipped.nr; i++)
883 fprintf(stderr, " git branch -d %s\n",
884 skipped.items[i].string);
885 }
886 string_list_clear(&skipped, 0);
887
b07bdd34
JL
888 if (!result) {
889 strbuf_addf(&buf, "remote.%s", remote->name);
890 if (git_config_rename_section(buf.buf, NULL) < 1)
891 return error(_("Could not remove config section '%s'"), buf.buf);
b3fd6cbf
BW
892
893 handle_push_default(remote->name, NULL);
b07bdd34
JL
894 }
895
e02f1762 896 return result;
211c8968
JS
897}
898
2af202be 899static void clear_push_info(void *util, const char *string)
211c8968 900{
e5dcbfd9
JS
901 struct push_info *info = util;
902 free(info->dest);
903 free(info);
904}
211c8968 905
88733235
JS
906static void free_remote_ref_states(struct ref_states *states)
907{
b537e0b1 908 string_list_clear(&states->new_refs, 0);
92f676fc 909 string_list_clear(&states->stale, 1);
88733235 910 string_list_clear(&states->tracked, 0);
e61e0cc6 911 string_list_clear(&states->heads, 0);
e5dcbfd9 912 string_list_clear_func(&states->push, clear_push_info);
88733235 913}
211c8968 914
cca7c97e 915static int append_ref_to_tracked_list(const char *refname,
53dc95b5 916 const struct object_id *oid, int flags, void *cb_data)
cca7c97e
JS
917{
918 struct ref_states *states = cb_data;
0ad4a5ff 919 struct refspec_item refspec;
cca7c97e 920
3bd92563
JS
921 if (flags & REF_ISSYMREF)
922 return 0;
923
cca7c97e
JS
924 memset(&refspec, 0, sizeof(refspec));
925 refspec.dst = (char *)refname;
926 if (!remote_find_tracking(states->remote, &refspec))
1d2f80fa 927 string_list_append(&states->tracked, abbrev_branch(refspec.src));
cca7c97e
JS
928
929 return 0;
211c8968
JS
930}
931
67a7e2d0
OM
932static int get_remote_ref_states(const char *name,
933 struct ref_states *states,
934 int query)
935{
936 struct transport *transport;
e0cc81e6 937 const struct ref *remote_refs;
67a7e2d0
OM
938
939 states->remote = remote_get(name);
940 if (!states->remote)
5025425d 941 return error(_("No such remote: '%s'"), name);
67a7e2d0
OM
942
943 read_branches();
944
945 if (query) {
345a3803 946 transport = transport_get(states->remote, states->remote->url_nr > 0 ?
67a7e2d0 947 states->remote->url[0] : NULL);
1af8ae1c 948 remote_refs = transport_get_remote_refs(transport, NULL);
67a7e2d0
OM
949 transport_disconnect(transport);
950
7ecbbf87 951 states->queried = 1;
e61e0cc6
JS
952 if (query & GET_REF_STATES)
953 get_ref_states(remote_refs, states);
954 if (query & GET_HEAD_NAMES)
955 get_head_names(remote_refs, states);
e5dcbfd9
JS
956 if (query & GET_PUSH_REF_STATES)
957 get_push_ref_states(remote_refs, states);
3bd92563 958 } else {
53dc95b5 959 for_each_ref(append_ref_to_tracked_list, states);
3383e199 960 string_list_sort(&states->tracked);
e5dcbfd9 961 get_push_ref_states_noquery(states);
67a7e2d0
OM
962 }
963
964 return 0;
965}
966
7ecbbf87
JS
967struct show_info {
968 struct string_list *list;
969 struct ref_states *states;
e5dcbfd9 970 int width, width2;
7ecbbf87
JS
971 int any_rebase;
972};
973
2af202be 974static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
e7d5a97d 975{
7ecbbf87
JS
976 struct show_info *info = cb_data;
977 int n = strlen(item->string);
978 if (n > info->width)
979 info->width = n;
78a395d3 980 string_list_insert(info->list, item->string);
7ecbbf87
JS
981 return 0;
982}
e7d5a97d 983
2af202be 984static int show_remote_info_item(struct string_list_item *item, void *cb_data)
7ecbbf87
JS
985{
986 struct show_info *info = cb_data;
987 struct ref_states *states = info->states;
988 const char *name = item->string;
989
990 if (states->queried) {
991 const char *fmt = "%s";
992 const char *arg = "";
b537e0b1 993 if (string_list_has_string(&states->new_refs, name)) {
bb16d5dd 994 fmt = _(" new (next fetch will store in remotes/%s)");
7ecbbf87
JS
995 arg = states->remote->name;
996 } else if (string_list_has_string(&states->tracked, name))
bb16d5dd 997 arg = _(" tracked");
7ecbbf87 998 else if (string_list_has_string(&states->stale, name))
bb16d5dd 999 arg = _(" stale (use 'git remote prune' to remove)");
7ecbbf87 1000 else
bb16d5dd 1001 arg = _(" ???");
7ecbbf87
JS
1002 printf(" %-*s", info->width, name);
1003 printf(fmt, arg);
1004 printf("\n");
1005 } else
1006 printf(" %s\n", name);
1007
1008 return 0;
1009}
1010
2af202be 1011static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
7ecbbf87
JS
1012{
1013 struct show_info *show_info = cb_data;
1014 struct ref_states *states = show_info->states;
1015 struct branch_info *branch_info = branch_item->util;
1016 struct string_list_item *item;
1017 int n;
1018
1019 if (!branch_info->merge.nr || !branch_info->remote_name ||
1020 strcmp(states->remote->name, branch_info->remote_name))
1021 return 0;
1022 if ((n = strlen(branch_item->string)) > show_info->width)
1023 show_info->width = n;
88f8576e 1024 if (branch_info->rebase >= REBASE_TRUE)
7ecbbf87
JS
1025 show_info->any_rebase = 1;
1026
78a395d3 1027 item = string_list_insert(show_info->list, branch_item->string);
7ecbbf87
JS
1028 item->util = branch_info;
1029
1030 return 0;
1031}
1032
2af202be 1033static int show_local_info_item(struct string_list_item *item, void *cb_data)
7ecbbf87
JS
1034{
1035 struct show_info *show_info = cb_data;
1036 struct branch_info *branch_info = item->util;
1037 struct string_list *merge = &branch_info->merge;
a1b467a4 1038 int width = show_info->width + 4;
7ecbbf87
JS
1039 int i;
1040
88f8576e 1041 if (branch_info->rebase >= REBASE_TRUE && branch_info->merge.nr > 1) {
bb16d5dd 1042 error(_("invalid branch.%s.merge; cannot rebase onto > 1 branch"),
7ecbbf87
JS
1043 item->string);
1044 return 0;
1045 }
1046
1047 printf(" %-*s ", show_info->width, item->string);
88f8576e 1048 if (branch_info->rebase >= REBASE_TRUE) {
1131ec98 1049 const char *msg;
88f8576e 1050 if (branch_info->rebase == REBASE_INTERACTIVE)
1131ec98
JS
1051 msg = _("rebases interactively onto remote %s");
1052 else if (branch_info->rebase == REBASE_MERGES)
1053 msg = _("rebases interactively (with merges) onto "
1054 "remote %s");
1055 else
1056 msg = _("rebases onto remote %s");
1057 printf_ln(msg, merge->items[0].string);
7ecbbf87
JS
1058 return 0;
1059 } else if (show_info->any_rebase) {
bb16d5dd 1060 printf_ln(_(" merges with remote %s"), merge->items[0].string);
a1b467a4 1061 width++;
7ecbbf87 1062 } else {
bb16d5dd 1063 printf_ln(_("merges with remote %s"), merge->items[0].string);
7ecbbf87
JS
1064 }
1065 for (i = 1; i < merge->nr; i++)
a1b467a4 1066 printf(_("%-*s and with remote %s\n"), width, "",
7ecbbf87
JS
1067 merge->items[i].string);
1068
1069 return 0;
1070}
e7d5a97d 1071
2af202be 1072static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
e5dcbfd9
JS
1073{
1074 struct show_info *show_info = cb_data;
1075 struct push_info *push_info = push_item->util;
1076 struct string_list_item *item;
1077 int n;
1078 if ((n = strlen(push_item->string)) > show_info->width)
1079 show_info->width = n;
1080 if ((n = strlen(push_info->dest)) > show_info->width2)
1081 show_info->width2 = n;
1d2f80fa 1082 item = string_list_append(show_info->list, push_item->string);
e5dcbfd9
JS
1083 item->util = push_item->util;
1084 return 0;
1085}
1086
48ef5636
JK
1087/*
1088 * Sorting comparison for a string list that has push_info
1089 * structs in its util field
1090 */
1091static int cmp_string_with_push(const void *va, const void *vb)
1092{
1093 const struct string_list_item *a = va;
1094 const struct string_list_item *b = vb;
1095 const struct push_info *a_push = a->util;
1096 const struct push_info *b_push = b->util;
1097 int cmp = strcmp(a->string, b->string);
1098 return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
1099}
1100
2af202be 1101static int show_push_info_item(struct string_list_item *item, void *cb_data)
e5dcbfd9
JS
1102{
1103 struct show_info *show_info = cb_data;
1104 struct push_info *push_info = item->util;
bb16d5dd 1105 const char *src = item->string, *status = NULL;
e5dcbfd9
JS
1106
1107 switch (push_info->status) {
1108 case PUSH_STATUS_CREATE:
bb16d5dd 1109 status = _("create");
e5dcbfd9
JS
1110 break;
1111 case PUSH_STATUS_DELETE:
bb16d5dd
NTND
1112 status = _("delete");
1113 src = _("(none)");
e5dcbfd9
JS
1114 break;
1115 case PUSH_STATUS_UPTODATE:
bb16d5dd 1116 status = _("up to date");
e5dcbfd9
JS
1117 break;
1118 case PUSH_STATUS_FASTFORWARD:
bb16d5dd 1119 status = _("fast-forwardable");
e5dcbfd9
JS
1120 break;
1121 case PUSH_STATUS_OUTOFDATE:
bb16d5dd 1122 status = _("local out of date");
e5dcbfd9
JS
1123 break;
1124 case PUSH_STATUS_NOTQUERIED:
1125 break;
1126 }
bb16d5dd
NTND
1127 if (status) {
1128 if (push_info->forced)
1129 printf_ln(_(" %-*s forces to %-*s (%s)"), show_info->width, src,
1130 show_info->width2, push_info->dest, status);
1131 else
1132 printf_ln(_(" %-*s pushes to %-*s (%s)"), show_info->width, src,
1133 show_info->width2, push_info->dest, status);
1134 } else {
1135 if (push_info->forced)
1136 printf_ln(_(" %-*s forces to %s"), show_info->width, src,
1137 push_info->dest);
1138 else
1139 printf_ln(_(" %-*s pushes to %s"), show_info->width, src,
1140 push_info->dest);
1141 }
e7d5a97d
OM
1142 return 0;
1143}
1144
ce2223fd
MH
1145static int get_one_entry(struct remote *remote, void *priv)
1146{
1147 struct string_list *list = priv;
1148 struct strbuf url_buf = STRBUF_INIT;
1149 const char **url;
1150 int i, url_nr;
1151
1152 if (remote->url_nr > 0) {
1153 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1154 string_list_append(list, remote->name)->util =
1155 strbuf_detach(&url_buf, NULL);
1156 } else
1157 string_list_append(list, remote->name)->util = NULL;
1158 if (remote->pushurl_nr) {
1159 url = remote->pushurl;
1160 url_nr = remote->pushurl_nr;
1161 } else {
1162 url = remote->url;
1163 url_nr = remote->url_nr;
1164 }
1165 for (i = 0; i < url_nr; i++)
1166 {
1167 strbuf_addf(&url_buf, "%s (push)", url[i]);
1168 string_list_append(list, remote->name)->util =
1169 strbuf_detach(&url_buf, NULL);
1170 }
1171
1172 return 0;
1173}
1174
1175static int show_all(void)
1176{
1177 struct string_list list = STRING_LIST_INIT_NODUP;
1178 int result;
1179
1180 list.strdup_strings = 1;
1181 result = for_each_remote(get_one_entry, &list);
1182
1183 if (!result) {
1184 int i;
1185
3383e199 1186 string_list_sort(&list);
ce2223fd
MH
1187 for (i = 0; i < list.nr; i++) {
1188 struct string_list_item *item = list.items + i;
1189 if (verbose)
1190 printf("%s\t%s\n", item->string,
1191 item->util ? (const char *)item->util : "");
1192 else {
1193 if (i && !strcmp((item - 1)->string, item->string))
1194 continue;
1195 printf("%s\n", item->string);
1196 }
1197 }
1198 }
1199 string_list_clear(&list, 1);
1200 return result;
1201}
1202
67a7e2d0 1203static int show(int argc, const char **argv)
211c8968 1204{
e61e0cc6 1205 int no_query = 0, result = 0, query_flag = 0;
211c8968 1206 struct option options[] = {
d5d09d47 1207 OPT_BOOL('n', NULL, &no_query, N_("do not query remotes")),
211c8968
JS
1208 OPT_END()
1209 };
1210 struct ref_states states;
183113a5 1211 struct string_list info_list = STRING_LIST_INIT_NODUP;
7ecbbf87 1212 struct show_info info;
211c8968 1213
4504107d 1214 argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
37782920 1215 0);
211c8968 1216
67a7e2d0
OM
1217 if (argc < 1)
1218 return show_all();
211c8968 1219
e61e0cc6 1220 if (!no_query)
e5dcbfd9 1221 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
e61e0cc6 1222
211c8968 1223 memset(&states, 0, sizeof(states));
7ecbbf87
JS
1224 memset(&info, 0, sizeof(info));
1225 info.states = &states;
1226 info.list = &info_list;
211c8968 1227 for (; argc; argc--, argv++) {
0ecfcb3b 1228 int i;
857f8c30
MG
1229 const char **url;
1230 int url_nr;
211c8968 1231
e61e0cc6 1232 get_remote_ref_states(*argv, &states, query_flag);
211c8968 1233
bb16d5dd
NTND
1234 printf_ln(_("* remote %s"), *argv);
1235 printf_ln(_(" Fetch URL: %s"), states.remote->url_nr > 0 ?
1236 states.remote->url[0] : _("(no URL)"));
857f8c30
MG
1237 if (states.remote->pushurl_nr) {
1238 url = states.remote->pushurl;
1239 url_nr = states.remote->pushurl_nr;
1240 } else {
1241 url = states.remote->url;
1242 url_nr = states.remote->url_nr;
1243 }
cd2b8ae9 1244 for (i = 0; i < url_nr; i++)
66f5f6dc
ÆAB
1245 /*
1246 * TRANSLATORS: the colon ':' should align
1247 * with the one in " Fetch URL: %s"
1248 * translation.
1249 */
bb16d5dd 1250 printf_ln(_(" Push URL: %s"), url[i]);
857f8c30 1251 if (!i)
7ba7b9ab 1252 printf_ln(_(" Push URL: %s"), _("(no URL)"));
e61e0cc6 1253 if (no_query)
7ba7b9ab 1254 printf_ln(_(" HEAD branch: %s"), _("(not queried)"));
e61e0cc6 1255 else if (!states.heads.nr)
7ba7b9ab 1256 printf_ln(_(" HEAD branch: %s"), _("(unknown)"));
e61e0cc6 1257 else if (states.heads.nr == 1)
bb16d5dd 1258 printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
e61e0cc6 1259 else {
bb16d5dd
NTND
1260 printf(_(" HEAD branch (remote HEAD is ambiguous,"
1261 " may be one of the following):\n"));
e61e0cc6
JS
1262 for (i = 0; i < states.heads.nr; i++)
1263 printf(" %s\n", states.heads.items[i].string);
211c8968
JS
1264 }
1265
7ecbbf87
JS
1266 /* remote branch info */
1267 info.width = 0;
b537e0b1 1268 for_each_string_list(&states.new_refs, add_remote_to_show_info, &info);
b684e977
JP
1269 for_each_string_list(&states.tracked, add_remote_to_show_info, &info);
1270 for_each_string_list(&states.stale, add_remote_to_show_info, &info);
7ecbbf87 1271 if (info.list->nr)
bb16d5dd
NTND
1272 printf_ln(Q_(" Remote branch:%s",
1273 " Remote branches:%s",
1274 info.list->nr),
1275 no_query ? _(" (status not queried)") : "");
b684e977 1276 for_each_string_list(info.list, show_remote_info_item, &info);
7ecbbf87
JS
1277 string_list_clear(info.list, 0);
1278
1279 /* git pull info */
1280 info.width = 0;
1281 info.any_rebase = 0;
b684e977 1282 for_each_string_list(&branch_list, add_local_to_show_info, &info);
7ecbbf87 1283 if (info.list->nr)
bb16d5dd
NTND
1284 printf_ln(Q_(" Local branch configured for 'git pull':",
1285 " Local branches configured for 'git pull':",
1286 info.list->nr));
b684e977 1287 for_each_string_list(info.list, show_local_info_item, &info);
7ecbbf87
JS
1288 string_list_clear(info.list, 0);
1289
1290 /* git push info */
e5dcbfd9 1291 if (states.remote->mirror)
bb16d5dd 1292 printf_ln(_(" Local refs will be mirrored by 'git push'"));
e5dcbfd9
JS
1293
1294 info.width = info.width2 = 0;
b684e977 1295 for_each_string_list(&states.push, add_push_to_show_info, &info);
9ed0d8d6 1296 QSORT(info.list->items, info.list->nr, cmp_string_with_push);
e5dcbfd9 1297 if (info.list->nr)
bb16d5dd
NTND
1298 printf_ln(Q_(" Local ref configured for 'git push'%s:",
1299 " Local refs configured for 'git push'%s:",
1300 info.list->nr),
1301 no_query ? _(" (status not queried)") : "");
b684e977 1302 for_each_string_list(info.list, show_push_info_item, &info);
e5dcbfd9 1303 string_list_clear(info.list, 0);
67a7e2d0 1304
88733235 1305 free_remote_ref_states(&states);
67a7e2d0 1306 }
211c8968 1307
67a7e2d0
OM
1308 return result;
1309}
67a7e2d0 1310
bc14fac8
JS
1311static int set_head(int argc, const char **argv)
1312{
1313 int i, opt_a = 0, opt_d = 0, result = 0;
1314 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1315 char *head_name = NULL;
1316
1317 struct option options[] = {
d5d09d47
SB
1318 OPT_BOOL('a', "auto", &opt_a,
1319 N_("set refs/remotes/<name>/HEAD according to remote")),
1320 OPT_BOOL('d', "delete", &opt_d,
1321 N_("delete refs/remotes/<name>/HEAD")),
bc14fac8
JS
1322 OPT_END()
1323 };
4504107d 1324 argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
37782920 1325 0);
bc14fac8
JS
1326 if (argc)
1327 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1328
1329 if (!opt_a && !opt_d && argc == 2) {
1330 head_name = xstrdup(argv[1]);
1331 } else if (opt_a && !opt_d && argc == 1) {
1332 struct ref_states states;
1333 memset(&states, 0, sizeof(states));
1334 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1335 if (!states.heads.nr)
bb16d5dd 1336 result |= error(_("Cannot determine remote HEAD"));
bc14fac8 1337 else if (states.heads.nr > 1) {
bb16d5dd
NTND
1338 result |= error(_("Multiple remote HEAD branches. "
1339 "Please choose one explicitly with:"));
bc14fac8
JS
1340 for (i = 0; i < states.heads.nr; i++)
1341 fprintf(stderr, " git remote set-head %s %s\n",
1342 argv[0], states.heads.items[i].string);
1343 } else
1344 head_name = xstrdup(states.heads.items[0].string);
1345 free_remote_ref_states(&states);
1346 } else if (opt_d && !opt_a && argc == 1) {
91774afc 1347 if (delete_ref(NULL, buf.buf, NULL, REF_NO_DEREF))
bb16d5dd 1348 result |= error(_("Could not delete %s"), buf.buf);
bc14fac8 1349 } else
4504107d 1350 usage_with_options(builtin_remote_sethead_usage, options);
bc14fac8
JS
1351
1352 if (head_name) {
bc14fac8
JS
1353 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1354 /* make sure it's valid */
c6893323 1355 if (!ref_exists(buf2.buf))
bb16d5dd 1356 result |= error(_("Not a valid ref: %s"), buf2.buf);
bc14fac8 1357 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
bb16d5dd 1358 result |= error(_("Could not setup %s"), buf.buf);
bc14fac8
JS
1359 if (opt_a)
1360 printf("%s/HEAD set to %s\n", argv[0], head_name);
1361 free(head_name);
67a7e2d0
OM
1362 }
1363
bc14fac8
JS
1364 strbuf_release(&buf);
1365 strbuf_release(&buf2);
67a7e2d0
OM
1366 return result;
1367}
1368
b92c5f22
FAG
1369static int prune_remote(const char *remote, int dry_run)
1370{
8552943f 1371 int result = 0;
b92c5f22 1372 struct ref_states states;
fcce0da9 1373 struct string_list refs_to_prune = STRING_LIST_INIT_NODUP;
8552943f 1374 struct string_list_item *item;
b92c5f22 1375 const char *dangling_msg = dry_run
bb16d5dd
NTND
1376 ? _(" %s will become dangling!")
1377 : _(" %s has become dangling!");
67a7e2d0 1378
b92c5f22
FAG
1379 memset(&states, 0, sizeof(states));
1380 get_remote_ref_states(remote, &states, GET_REF_STATES);
1381
16d4fa3d
MH
1382 if (!states.stale.nr) {
1383 free_remote_ref_states(&states);
1384 return 0;
1385 }
1386
1387 printf_ln(_("Pruning %s"), remote);
1388 printf_ln(_("URL: %s"),
1389 states.remote->url_nr
1390 ? states.remote->url[0]
1391 : _("(no URL)"));
1392
8552943f
MH
1393 for_each_string_list_item(item, &states.stale)
1394 string_list_append(&refs_to_prune, item->util);
3383e199 1395 string_list_sort(&refs_to_prune);
28d3f214 1396
a122366d 1397 if (!dry_run)
64da4199 1398 result |= delete_refs("remote: prune", &refs_to_prune, 0);
8d767927 1399
8552943f
MH
1400 for_each_string_list_item(item, &states.stale) {
1401 const char *refname = item->util;
8d767927 1402
bb16d5dd
NTND
1403 if (dry_run)
1404 printf_ln(_(" * [would prune] %s"),
1405 abbrev_ref(refname, "refs/remotes/"));
1406 else
1407 printf_ln(_(" * [pruned] %s"),
1408 abbrev_ref(refname, "refs/remotes/"));
211c8968
JS
1409 }
1410
fcce0da9 1411 warn_dangling_symrefs(stdout, dangling_msg, &refs_to_prune);
e6bea66d 1412
fcce0da9 1413 string_list_clear(&refs_to_prune, 0);
b92c5f22 1414 free_remote_ref_states(&states);
211c8968
JS
1415 return result;
1416}
1417
ce2223fd
MH
1418static int prune(int argc, const char **argv)
1419{
1420 int dry_run = 0, result = 0;
1421 struct option options[] = {
1422 OPT__DRY_RUN(&dry_run, N_("dry run")),
1423 OPT_END()
1424 };
1425
1426 argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
1427 0);
1428
1429 if (argc < 1)
1430 usage_with_options(builtin_remote_prune_usage, options);
1431
1432 for (; argc; argc--, argv++)
1433 result |= prune_remote(*argv, dry_run);
1434
1435 return result;
1436}
1437
8db35596 1438static int get_remote_default(const char *key, const char *value, void *priv)
211c8968 1439{
8db35596
BG
1440 if (strcmp(key, "remotes.default") == 0) {
1441 int *found = priv;
1442 *found = 1;
84521ed6 1443 }
211c8968
JS
1444 return 0;
1445}
1446
1447static int update(int argc, const char **argv)
1448{
90765fa3 1449 int i, prune = -1;
efa54803 1450 struct option options[] = {
d5d09d47
SB
1451 OPT_BOOL('p', "prune", &prune,
1452 N_("prune remotes after fetching")),
efa54803
FAG
1453 OPT_END()
1454 };
22f9b7f3 1455 struct strvec fetch_argv = STRVEC_INIT;
8db35596 1456 int default_defined = 0;
8607590e 1457 int retval;
211c8968 1458
4504107d 1459 argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
efa54803 1460 PARSE_OPT_KEEP_ARGV0);
211c8968 1461
22f9b7f3 1462 strvec_push(&fetch_argv, "fetch");
84521ed6 1463
90765fa3 1464 if (prune != -1)
22f9b7f3 1465 strvec_push(&fetch_argv, prune ? "--prune" : "--no-prune");
8db35596 1466 if (verbose)
22f9b7f3
JK
1467 strvec_push(&fetch_argv, "-v");
1468 strvec_push(&fetch_argv, "--multiple");
4f2e842d 1469 if (argc < 2)
22f9b7f3 1470 strvec_push(&fetch_argv, "default");
4f2e842d 1471 for (i = 1; i < argc; i++)
22f9b7f3 1472 strvec_push(&fetch_argv, argv[i]);
84521ed6 1473
d70a9eb6 1474 if (strcmp(fetch_argv.v[fetch_argv.nr-1], "default") == 0) {
8db35596 1475 git_config(get_remote_default, &default_defined);
8607590e 1476 if (!default_defined) {
22f9b7f3
JK
1477 strvec_pop(&fetch_argv);
1478 strvec_push(&fetch_argv, "--all");
8607590e 1479 }
efa54803 1480 }
84521ed6 1481
d70a9eb6 1482 retval = run_command_v_opt(fetch_argv.v, RUN_GIT_CMD);
22f9b7f3 1483 strvec_clear(&fetch_argv);
8607590e 1484 return retval;
211c8968
JS
1485}
1486
113c29ad 1487static int remove_all_fetch_refspecs(const char *key)
3d8b6949 1488{
30598ad0 1489 return git_config_set_multivar_gently(key, NULL, NULL, 1);
3d8b6949
JN
1490}
1491
ab5e4b67
PS
1492static void add_branches(struct remote *remote, const char **branches,
1493 const char *key)
3d8b6949
JN
1494{
1495 const char *remotename = remote->name;
1496 int mirror = remote->mirror;
1497 struct strbuf refspec = STRBUF_INIT;
1498
1499 for (; *branches; branches++)
ab5e4b67 1500 add_branch(key, *branches, remotename, mirror, &refspec);
3d8b6949
JN
1501
1502 strbuf_release(&refspec);
3d8b6949
JN
1503}
1504
1505static int set_remote_branches(const char *remotename, const char **branches,
1506 int add_mode)
1507{
1508 struct strbuf key = STRBUF_INIT;
1509 struct remote *remote;
1510
1511 strbuf_addf(&key, "remote.%s.fetch", remotename);
1512
3d8b6949 1513 remote = remote_get(remotename);
e459b073 1514 if (!remote_is_configured(remote, 1))
674468b3 1515 die(_("No such remote '%s'"), remotename);
3d8b6949 1516
113c29ad 1517 if (!add_mode && remove_all_fetch_refspecs(key.buf)) {
3d8b6949
JN
1518 strbuf_release(&key);
1519 return 1;
1520 }
ab5e4b67 1521 add_branches(remote, branches, key.buf);
3d8b6949
JN
1522
1523 strbuf_release(&key);
1524 return 0;
1525}
1526
1527static int set_branches(int argc, const char **argv)
1528{
1529 int add_mode = 0;
1530 struct option options[] = {
d5d09d47 1531 OPT_BOOL('\0', "add", &add_mode, N_("add branch")),
3d8b6949
JN
1532 OPT_END()
1533 };
1534
1535 argc = parse_options(argc, argv, NULL, options,
1536 builtin_remote_setbranches_usage, 0);
1537 if (argc == 0) {
bb16d5dd 1538 error(_("no remote specified"));
656cdf0c 1539 usage_with_options(builtin_remote_setbranches_usage, options);
3d8b6949
JN
1540 }
1541 argv[argc] = NULL;
1542
1543 return set_remote_branches(argv[0], argv + 1, add_mode);
1544}
1545
96f78d39
BB
1546static int get_url(int argc, const char **argv)
1547{
1548 int i, push_mode = 0, all_mode = 0;
1549 const char *remotename = NULL;
1550 struct remote *remote;
1551 const char **url;
1552 int url_nr;
1553 struct option options[] = {
1554 OPT_BOOL('\0', "push", &push_mode,
1555 N_("query push URLs rather than fetch URLs")),
1556 OPT_BOOL('\0', "all", &all_mode,
1557 N_("return all URLs")),
1558 OPT_END()
1559 };
1560 argc = parse_options(argc, argv, NULL, options, builtin_remote_geturl_usage, 0);
1561
1562 if (argc != 1)
1563 usage_with_options(builtin_remote_geturl_usage, options);
1564
1565 remotename = argv[0];
1566
96f78d39 1567 remote = remote_get(remotename);
e459b073 1568 if (!remote_is_configured(remote, 1))
674468b3 1569 die(_("No such remote '%s'"), remotename);
96f78d39
BB
1570
1571 url_nr = 0;
1572 if (push_mode) {
1573 url = remote->pushurl;
1574 url_nr = remote->pushurl_nr;
1575 }
1576 /* else fetch mode */
1577
1578 /* Use the fetch URL when no push URLs were found or requested. */
1579 if (!url_nr) {
1580 url = remote->url;
1581 url_nr = remote->url_nr;
1582 }
1583
1584 if (!url_nr)
1585 die(_("no URLs configured for remote '%s'"), remotename);
1586
1587 if (all_mode) {
1588 for (i = 0; i < url_nr; i++)
1589 printf_ln("%s", url[i]);
1590 } else {
1591 printf_ln("%s", *url);
1592 }
1593
1594 return 0;
1595}
1596
433f2be1
IL
1597static int set_url(int argc, const char **argv)
1598{
1599 int i, push_mode = 0, add_mode = 0, delete_mode = 0;
1600 int matches = 0, negative_matches = 0;
1601 const char *remotename = NULL;
1602 const char *newurl = NULL;
1603 const char *oldurl = NULL;
1604 struct remote *remote;
1605 regex_t old_regex;
1606 const char **urlset;
1607 int urlset_nr;
1608 struct strbuf name_buf = STRBUF_INIT;
1609 struct option options[] = {
d5d09d47
SB
1610 OPT_BOOL('\0', "push", &push_mode,
1611 N_("manipulate push URLs")),
1612 OPT_BOOL('\0', "add", &add_mode,
1613 N_("add URL")),
1614 OPT_BOOL('\0', "delete", &delete_mode,
fbbae140 1615 N_("delete URLs")),
433f2be1
IL
1616 OPT_END()
1617 };
c49904ef 1618 argc = parse_options(argc, argv, NULL, options, builtin_remote_seturl_usage,
433f2be1
IL
1619 PARSE_OPT_KEEP_ARGV0);
1620
1621 if (add_mode && delete_mode)
bb16d5dd 1622 die(_("--add --delete doesn't make sense"));
433f2be1
IL
1623
1624 if (argc < 3 || argc > 4 || ((add_mode || delete_mode) && argc != 3))
1625 usage_with_options(builtin_remote_seturl_usage, options);
1626
1627 remotename = argv[1];
1628 newurl = argv[2];
1629 if (argc > 3)
1630 oldurl = argv[3];
1631
1632 if (delete_mode)
1633 oldurl = newurl;
1634
433f2be1 1635 remote = remote_get(remotename);
e459b073 1636 if (!remote_is_configured(remote, 1))
674468b3 1637 die(_("No such remote '%s'"), remotename);
433f2be1
IL
1638
1639 if (push_mode) {
1640 strbuf_addf(&name_buf, "remote.%s.pushurl", remotename);
1641 urlset = remote->pushurl;
1642 urlset_nr = remote->pushurl_nr;
1643 } else {
1644 strbuf_addf(&name_buf, "remote.%s.url", remotename);
1645 urlset = remote->url;
1646 urlset_nr = remote->url_nr;
1647 }
1648
1649 /* Special cases that add new entry. */
1650 if ((!oldurl && !delete_mode) || add_mode) {
1651 if (add_mode)
1652 git_config_set_multivar(name_buf.buf, newurl,
45ebdcc9 1653 "^$", 0);
433f2be1
IL
1654 else
1655 git_config_set(name_buf.buf, newurl);
85af9f7a 1656 goto out;
433f2be1
IL
1657 }
1658
1659 /* Old URL specified. Demand that one matches. */
1660 if (regcomp(&old_regex, oldurl, REG_EXTENDED))
bb16d5dd 1661 die(_("Invalid old URL pattern: %s"), oldurl);
433f2be1
IL
1662
1663 for (i = 0; i < urlset_nr; i++)
1664 if (!regexec(&old_regex, urlset[i], 0, NULL, 0))
1665 matches++;
1666 else
1667 negative_matches++;
1668 if (!delete_mode && !matches)
bb16d5dd 1669 die(_("No such URL found: %s"), oldurl);
433f2be1 1670 if (delete_mode && !negative_matches && !push_mode)
bb16d5dd 1671 die(_("Will not delete all non-push URLs"));
433f2be1
IL
1672
1673 regfree(&old_regex);
1674
1675 if (!delete_mode)
1676 git_config_set_multivar(name_buf.buf, newurl, oldurl, 0);
1677 else
1678 git_config_set_multivar(name_buf.buf, NULL, oldurl, 1);
85af9f7a
RS
1679out:
1680 strbuf_release(&name_buf);
433f2be1
IL
1681 return 0;
1682}
1683
211c8968
JS
1684int cmd_remote(int argc, const char **argv, const char *prefix)
1685{
1686 struct option options[] = {
fbbae140 1687 OPT__VERBOSE(&verbose, N_("be verbose; must be placed before a subcommand")),
211c8968
JS
1688 OPT_END()
1689 };
1690 int result;
1691
37782920 1692 argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
211c8968
JS
1693 PARSE_OPT_STOP_AT_NON_OPTION);
1694
1695 if (argc < 1)
1696 result = show_all();
1697 else if (!strcmp(argv[0], "add"))
1698 result = add(argc, argv);
bf98421a
MV
1699 else if (!strcmp(argv[0], "rename"))
1700 result = mv(argc, argv);
e17dba8f 1701 else if (!strcmp(argv[0], "rm") || !strcmp(argv[0], "remove"))
211c8968 1702 result = rm(argc, argv);
bc14fac8
JS
1703 else if (!strcmp(argv[0], "set-head"))
1704 result = set_head(argc, argv);
3d8b6949
JN
1705 else if (!strcmp(argv[0], "set-branches"))
1706 result = set_branches(argc, argv);
96f78d39
BB
1707 else if (!strcmp(argv[0], "get-url"))
1708 result = get_url(argc, argv);
433f2be1
IL
1709 else if (!strcmp(argv[0], "set-url"))
1710 result = set_url(argc, argv);
211c8968 1711 else if (!strcmp(argv[0], "show"))
67a7e2d0 1712 result = show(argc, argv);
211c8968 1713 else if (!strcmp(argv[0], "prune"))
67a7e2d0 1714 result = prune(argc, argv);
211c8968
JS
1715 else if (!strcmp(argv[0], "update"))
1716 result = update(argc, argv);
1717 else {
bb16d5dd 1718 error(_("Unknown subcommand: %s"), argv[0]);
211c8968
JS
1719 usage_with_options(builtin_remote_usage, options);
1720 }
1721
1722 return result ? 1 : 0;
1723}