1#include "cache.h"
2#include "parse-options.h"
3#include "transport.h"
4#include "remote.h"
5#include "string-list.h"
6#include "strbuf.h"
7#include "run-command.h"
8#include "refs.h"
9
10static const char * const builtin_remote_usage[] = {
11 "git remote",
12 "git remote add <name> <url>",
13 "git remote rm <name>",
14 "git remote show <name>",
15 "git remote prune <name>",
16 "git remote update [group]",
17 NULL
18};
19
20static int verbose;
21
22static int show_all(void);
23
24static inline int postfixcmp(const char *string, const char *postfix)
25{
26 int len1 = strlen(string), len2 = strlen(postfix);
27 if (len1 < len2)
28 return 1;
29 return strcmp(string + len1 - len2, postfix);
30}
31
32static int opt_parse_track(const struct option *opt, const char *arg, int not)
33{
34 struct string_list *list = opt->value;
35 if (not)
36 string_list_clear(list, 0);
37 else
38 string_list_append(arg, list);
39 return 0;
40}
41
42static int fetch_remote(const char *name)
43{
44 const char *argv[] = { "fetch", name, NULL };
45 printf("Updating %s\n", name);
46 if (run_command_v_opt(argv, RUN_GIT_CMD))
47 return error("Could not fetch %s", name);
48 return 0;
49}
50
51static int add(int argc, const char **argv)
52{
53 int fetch = 0, mirror = 0;
54 struct string_list track = { NULL, 0, 0 };
55 const char *master = NULL;
56 struct remote *remote;
57 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
58 const char *name, *url;
59 int i;
60
61 struct option options[] = {
62 OPT_GROUP("add specific options"),
63 OPT_BOOLEAN('f', "fetch", &fetch, "fetch the remote branches"),
64 OPT_CALLBACK('t', "track", &track, "branch",
65 "branch(es) to track", opt_parse_track),
66 OPT_STRING('m', "master", &master, "branch", "master branch"),
67 OPT_BOOLEAN(0, "mirror", &mirror, "no separate remotes"),
68 OPT_END()
69 };
70
71 argc = parse_options(argc, argv, options, builtin_remote_usage, 0);
72
73 if (argc < 2)
74 usage_with_options(builtin_remote_usage, options);
75
76 name = argv[0];
77 url = argv[1];
78
79 remote = remote_get(name);
80 if (remote && (remote->url_nr > 1 || strcmp(name, remote->url[0]) ||
81 remote->fetch_refspec_nr))
82 die("remote %s already exists.", name);
83
84 strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
85 if (!valid_fetch_refspec(buf2.buf))
86 die("'%s' is not a valid remote name", name);
87
88 strbuf_addf(&buf, "remote.%s.url", name);
89 if (git_config_set(buf.buf, url))
90 return 1;
91
92 strbuf_reset(&buf);
93 strbuf_addf(&buf, "remote.%s.fetch", name);
94
95 if (track.nr == 0)
96 string_list_append("*", &track);
97 for (i = 0; i < track.nr; i++) {
98 struct string_list_item *item = track.items + i;
99
100 strbuf_reset(&buf2);
101 strbuf_addch(&buf2, '+');
102 if (mirror)
103 strbuf_addf(&buf2, "refs/%s:refs/%s",
104 item->string, item->string);
105 else
106 strbuf_addf(&buf2, "refs/heads/%s:refs/remotes/%s/%s",
107 item->string, name, item->string);
108 if (git_config_set_multivar(buf.buf, buf2.buf, "^$", 0))
109 return 1;
110 }
111
112 if (mirror) {
113 strbuf_reset(&buf);
114 strbuf_addf(&buf, "remote.%s.mirror", name);
115 if (git_config_set(buf.buf, "true"))
116 return 1;
117 }
118
119 if (fetch && fetch_remote(name))
120 return 1;
121
122 if (master) {
123 strbuf_reset(&buf);
124 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
125
126 strbuf_reset(&buf2);
127 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
128
129 if (create_symref(buf.buf, buf2.buf, "remote add"))
130 return error("Could not setup master '%s'", master);
131 }
132
133 strbuf_release(&buf);
134 strbuf_release(&buf2);
135 string_list_clear(&track, 0);
136
137 return 0;
138}
139
140struct branch_info {
141 char *remote;
142 struct string_list merge;
143};
144
145static struct string_list branch_list;
146
147static const char *abbrev_ref(const char *name, const char *prefix)
148{
149 const char *abbrev = skip_prefix(name, prefix);
150 if (abbrev)
151 return abbrev;
152 return name;
153}
154#define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
155
156static int config_read_branches(const char *key, const char *value, void *cb)
157{
158 if (!prefixcmp(key, "branch.")) {
159 char *name;
160 struct string_list_item *item;
161 struct branch_info *info;
162 enum { REMOTE, MERGE } type;
163
164 key += 7;
165 if (!postfixcmp(key, ".remote")) {
166 name = xstrndup(key, strlen(key) - 7);
167 type = REMOTE;
168 } else if (!postfixcmp(key, ".merge")) {
169 name = xstrndup(key, strlen(key) - 6);
170 type = MERGE;
171 } else
172 return 0;
173
174 item = string_list_insert(name, &branch_list);
175
176 if (!item->util)
177 item->util = xcalloc(sizeof(struct branch_info), 1);
178 info = item->util;
179 if (type == REMOTE) {
180 if (info->remote)
181 warning("more than one branch.%s", key);
182 info->remote = xstrdup(value);
183 } else {
184 char *space = strchr(value, ' ');
185 value = abbrev_branch(value);
186 while (space) {
187 char *merge;
188 merge = xstrndup(value, space - value);
189 string_list_append(merge, &info->merge);
190 value = abbrev_branch(space + 1);
191 space = strchr(value, ' ');
192 }
193 string_list_append(xstrdup(value), &info->merge);
194 }
195 }
196 return 0;
197}
198
199static void read_branches(void)
200{
201 if (branch_list.nr)
202 return;
203 git_config(config_read_branches, NULL);
204 sort_string_list(&branch_list);
205}
206
207struct ref_states {
208 struct remote *remote;
209 struct string_list new, stale, tracked;
210};
211
212static int handle_one_branch(const char *refname,
213 const unsigned char *sha1, int flags, void *cb_data)
214{
215 struct ref_states *states = cb_data;
216 struct refspec refspec;
217
218 memset(&refspec, 0, sizeof(refspec));
219 refspec.dst = (char *)refname;
220 if (!remote_find_tracking(states->remote, &refspec)) {
221 struct string_list_item *item;
222 const char *name = abbrev_branch(refspec.src);
223 /* symbolic refs pointing nowhere were handled already */
224 if ((flags & REF_ISSYMREF) ||
225 unsorted_string_list_has_string(&states->tracked,
226 name) ||
227 unsorted_string_list_has_string(&states->new,
228 name))
229 return 0;
230 item = string_list_append(name, &states->stale);
231 item->util = xstrdup(refname);
232 }
233 return 0;
234}
235
236static int get_ref_states(const struct ref *ref, struct ref_states *states)
237{
238 struct ref *fetch_map = NULL, **tail = &fetch_map;
239 int i;
240
241 for (i = 0; i < states->remote->fetch_refspec_nr; i++)
242 if (get_fetch_map(ref, states->remote->fetch + i, &tail, 1))
243 die("Could not get fetch map for refspec %s",
244 states->remote->fetch_refspec[i]);
245
246 states->new.strdup_strings = states->tracked.strdup_strings = 1;
247 for (ref = fetch_map; ref; ref = ref->next) {
248 struct string_list *target = &states->tracked;
249 unsigned char sha1[20];
250 void *util = NULL;
251
252 if (!ref->peer_ref || read_ref(ref->peer_ref->name, sha1))
253 target = &states->new;
254 else {
255 target = &states->tracked;
256 if (hashcmp(sha1, ref->new_sha1))
257 util = &states;
258 }
259 string_list_append(abbrev_branch(ref->name), target)->util = util;
260 }
261 free_refs(fetch_map);
262
263 for_each_ref(handle_one_branch, states);
264 sort_string_list(&states->stale);
265
266 return 0;
267}
268
269struct known_remote {
270 struct known_remote *next;
271 struct remote *remote;
272};
273
274struct known_remotes {
275 struct remote *to_delete;
276 struct known_remote *list;
277};
278
279static int add_known_remote(struct remote *remote, void *cb_data)
280{
281 struct known_remotes *all = cb_data;
282 struct known_remote *r;
283
284 if (!strcmp(all->to_delete->name, remote->name))
285 return 0;
286
287 r = xmalloc(sizeof(*r));
288 r->remote = remote;
289 r->next = all->list;
290 all->list = r;
291 return 0;
292}
293
294struct branches_for_remote {
295 struct remote *remote;
296 struct string_list *branches;
297 struct known_remotes *keep;
298};
299
300static int add_branch_for_removal(const char *refname,
301 const unsigned char *sha1, int flags, void *cb_data)
302{
303 struct branches_for_remote *branches = cb_data;
304 struct refspec refspec;
305 struct string_list_item *item;
306 struct known_remote *kr;
307
308 memset(&refspec, 0, sizeof(refspec));
309 refspec.dst = (char *)refname;
310 if (remote_find_tracking(branches->remote, &refspec))
311 return 0;
312
313 /* don't delete a branch if another remote also uses it */
314 for (kr = branches->keep->list; kr; kr = kr->next) {
315 memset(&refspec, 0, sizeof(refspec));
316 refspec.dst = (char *)refname;
317 if (!remote_find_tracking(kr->remote, &refspec))
318 return 0;
319 }
320
321 /* make sure that symrefs are deleted */
322 if (flags & REF_ISSYMREF)
323 return unlink(git_path(refname));
324
325 item = string_list_append(refname, branches->branches);
326 item->util = xmalloc(20);
327 hashcpy(item->util, sha1);
328
329 return 0;
330}
331
332static int remove_branches(struct string_list *branches)
333{
334 int i, result = 0;
335 for (i = 0; i < branches->nr; i++) {
336 struct string_list_item *item = branches->items + i;
337 const char *refname = item->string;
338 unsigned char *sha1 = item->util;
339
340 if (delete_ref(refname, sha1))
341 result |= error("Could not remove branch %s", refname);
342 }
343 return result;
344}
345
346static int rm(int argc, const char **argv)
347{
348 struct option options[] = {
349 OPT_END()
350 };
351 struct remote *remote;
352 struct strbuf buf = STRBUF_INIT;
353 struct known_remotes known_remotes = { NULL, NULL };
354 struct string_list branches = { NULL, 0, 0, 1 };
355 struct branches_for_remote cb_data = { NULL, &branches, &known_remotes };
356 int i;
357
358 if (argc != 2)
359 usage_with_options(builtin_remote_usage, options);
360
361 remote = remote_get(argv[1]);
362 if (!remote)
363 die("No such remote: %s", argv[1]);
364
365 known_remotes.to_delete = remote;
366 for_each_remote(add_known_remote, &known_remotes);
367
368 strbuf_addf(&buf, "remote.%s", remote->name);
369 if (git_config_rename_section(buf.buf, NULL) < 1)
370 return error("Could not remove config section '%s'", buf.buf);
371
372 read_branches();
373 for (i = 0; i < branch_list.nr; i++) {
374 struct string_list_item *item = branch_list.items + i;
375 struct branch_info *info = item->util;
376 if (info->remote && !strcmp(info->remote, remote->name)) {
377 const char *keys[] = { "remote", "merge", NULL }, **k;
378 for (k = keys; *k; k++) {
379 strbuf_reset(&buf);
380 strbuf_addf(&buf, "branch.%s.%s",
381 item->string, *k);
382 if (git_config_set(buf.buf, NULL)) {
383 strbuf_release(&buf);
384 return -1;
385 }
386 }
387 }
388 }
389
390 /*
391 * We cannot just pass a function to for_each_ref() which deletes
392 * the branches one by one, since for_each_ref() relies on cached
393 * refs, which are invalidated when deleting a branch.
394 */
395 cb_data.remote = remote;
396 i = for_each_ref(add_branch_for_removal, &cb_data);
397 strbuf_release(&buf);
398
399 if (!i)
400 i = remove_branches(&branches);
401 string_list_clear(&branches, 1);
402
403 return i;
404}
405
406static void show_list(const char *title, struct string_list *list,
407 const char *extra_arg)
408{
409 int i;
410
411 if (!list->nr)
412 return;
413
414 printf(title, list->nr > 1 ? "es" : "", extra_arg);
415 printf("\n");
416 for (i = 0; i < list->nr; i++)
417 printf(" %s\n", list->items[i].string);
418}
419
420static int get_remote_ref_states(const char *name,
421 struct ref_states *states,
422 int query)
423{
424 struct transport *transport;
425 const struct ref *ref;
426
427 states->remote = remote_get(name);
428 if (!states->remote)
429 return error("No such remote: %s", name);
430
431 read_branches();
432
433 if (query) {
434 transport = transport_get(NULL, states->remote->url_nr > 0 ?
435 states->remote->url[0] : NULL);
436 ref = transport_get_remote_refs(transport);
437 transport_disconnect(transport);
438
439 get_ref_states(ref, states);
440 }
441
442 return 0;
443}
444
445static int append_ref_to_tracked_list(const char *refname,
446 const unsigned char *sha1, int flags, void *cb_data)
447{
448 struct ref_states *states = cb_data;
449 struct refspec refspec;
450
451 memset(&refspec, 0, sizeof(refspec));
452 refspec.dst = (char *)refname;
453 if (!remote_find_tracking(states->remote, &refspec))
454 string_list_append(abbrev_branch(refspec.src), &states->tracked);
455
456 return 0;
457}
458
459static int show(int argc, const char **argv)
460{
461 int no_query = 0, result = 0;
462 struct option options[] = {
463 OPT_GROUP("show specific options"),
464 OPT_BOOLEAN('n', NULL, &no_query, "do not query remotes"),
465 OPT_END()
466 };
467 struct ref_states states;
468
469 argc = parse_options(argc, argv, options, builtin_remote_usage, 0);
470
471 if (argc < 1)
472 return show_all();
473
474 memset(&states, 0, sizeof(states));
475 for (; argc; argc--, argv++) {
476 int i;
477
478 get_remote_ref_states(*argv, &states, !no_query);
479
480 printf("* remote %s\n URL: %s\n", *argv,
481 states.remote->url_nr > 0 ?
482 states.remote->url[0] : "(no URL)");
483
484 for (i = 0; i < branch_list.nr; i++) {
485 struct string_list_item *branch = branch_list.items + i;
486 struct branch_info *info = branch->util;
487 int j;
488
489 if (!info->merge.nr || strcmp(*argv, info->remote))
490 continue;
491 printf(" Remote branch%s merged with 'git pull' "
492 "while on branch %s\n ",
493 info->merge.nr > 1 ? "es" : "",
494 branch->string);
495 for (j = 0; j < info->merge.nr; j++)
496 printf(" %s", info->merge.items[j].string);
497 printf("\n");
498 }
499
500 if (!no_query) {
501 show_list(" New remote branch%s (next fetch "
502 "will store in remotes/%s)",
503 &states.new, states.remote->name);
504 show_list(" Stale tracking branch%s (use 'git remote "
505 "prune')", &states.stale, "");
506 }
507
508 if (no_query)
509 for_each_ref(append_ref_to_tracked_list, &states);
510 show_list(" Tracked remote branch%s", &states.tracked, "");
511
512 if (states.remote->push_refspec_nr) {
513 printf(" Local branch%s pushed with 'git push'\n",
514 states.remote->push_refspec_nr > 1 ?
515 "es" : "");
516 for (i = 0; i < states.remote->push_refspec_nr; i++) {
517 struct refspec *spec = states.remote->push + i;
518 printf(" %s%s%s%s\n",
519 spec->force ? "+" : "",
520 abbrev_branch(spec->src),
521 spec->dst ? ":" : "",
522 spec->dst ? abbrev_branch(spec->dst) : "");
523 }
524 }
525
526 /* NEEDSWORK: free remote */
527 string_list_clear(&states.new, 0);
528 string_list_clear(&states.stale, 0);
529 string_list_clear(&states.tracked, 0);
530 }
531
532 return result;
533}
534
535static int prune(int argc, const char **argv)
536{
537 int dry_run = 0, result = 0;
538 struct option options[] = {
539 OPT_GROUP("prune specific options"),
540 OPT__DRY_RUN(&dry_run),
541 OPT_END()
542 };
543 struct ref_states states;
544
545 argc = parse_options(argc, argv, options, builtin_remote_usage, 0);
546
547 if (argc < 1)
548 usage_with_options(builtin_remote_usage, options);
549
550 memset(&states, 0, sizeof(states));
551 for (; argc; argc--, argv++) {
552 int i;
553
554 get_remote_ref_states(*argv, &states, 1);
555
556 if (states.stale.nr) {
557 printf("Pruning %s\n", *argv);
558 printf("URL: %s\n",
559 states.remote->url_nr
560 ? states.remote->url[0]
561 : "(no URL)");
562 }
563
564 for (i = 0; i < states.stale.nr; i++) {
565 const char *refname = states.stale.items[i].util;
566
567 if (!dry_run)
568 result |= delete_ref(refname, NULL);
569
570 printf(" * [%s] %s\n", dry_run ? "would prune" : "pruned",
571 abbrev_ref(refname, "refs/remotes/"));
572 }
573
574 /* NEEDSWORK: free remote */
575 string_list_clear(&states.new, 0);
576 string_list_clear(&states.stale, 0);
577 string_list_clear(&states.tracked, 0);
578 }
579
580 return result;
581}
582
583static int get_one_remote_for_update(struct remote *remote, void *priv)
584{
585 struct string_list *list = priv;
586 if (!remote->skip_default_update)
587 string_list_append(xstrdup(remote->name), list);
588 return 0;
589}
590
591struct remote_group {
592 const char *name;
593 struct string_list *list;
594} remote_group;
595
596static int get_remote_group(const char *key, const char *value, void *cb)
597{
598 if (!prefixcmp(key, "remotes.") &&
599 !strcmp(key + 8, remote_group.name)) {
600 /* split list by white space */
601 int space = strcspn(value, " \t\n");
602 while (*value) {
603 if (space > 1)
604 string_list_append(xstrndup(value, space),
605 remote_group.list);
606 value += space + (value[space] != '\0');
607 space = strcspn(value, " \t\n");
608 }
609 }
610
611 return 0;
612}
613
614static int update(int argc, const char **argv)
615{
616 int i, result = 0;
617 struct string_list list = { NULL, 0, 0, 0 };
618 static const char *default_argv[] = { NULL, "default", NULL };
619
620 if (argc < 2) {
621 argc = 2;
622 argv = default_argv;
623 }
624
625 remote_group.list = &list;
626 for (i = 1; i < argc; i++) {
627 remote_group.name = argv[i];
628 result = git_config(get_remote_group, NULL);
629 }
630
631 if (!result && !list.nr && argc == 2 && !strcmp(argv[1], "default"))
632 result = for_each_remote(get_one_remote_for_update, &list);
633
634 for (i = 0; i < list.nr; i++)
635 result |= fetch_remote(list.items[i].string);
636
637 /* all names were strdup()ed or strndup()ed */
638 list.strdup_strings = 1;
639 string_list_clear(&list, 0);
640
641 return result;
642}
643
644static int get_one_entry(struct remote *remote, void *priv)
645{
646 struct string_list *list = priv;
647
648 if (remote->url_nr > 0) {
649 int i;
650
651 for (i = 0; i < remote->url_nr; i++)
652 string_list_append(remote->name, list)->util = (void *)remote->url[i];
653 } else
654 string_list_append(remote->name, list)->util = NULL;
655
656 return 0;
657}
658
659static int show_all(void)
660{
661 struct string_list list = { NULL, 0, 0 };
662 int result = for_each_remote(get_one_entry, &list);
663
664 if (!result) {
665 int i;
666
667 sort_string_list(&list);
668 for (i = 0; i < list.nr; i++) {
669 struct string_list_item *item = list.items + i;
670 if (verbose)
671 printf("%s\t%s\n", item->string,
672 item->util ? (const char *)item->util : "");
673 else {
674 if (i && !strcmp((item - 1)->string, item->string))
675 continue;
676 printf("%s\n", item->string);
677 }
678 }
679 }
680 return result;
681}
682
683int cmd_remote(int argc, const char **argv, const char *prefix)
684{
685 struct option options[] = {
686 OPT__VERBOSE(&verbose),
687 OPT_END()
688 };
689 int result;
690
691 argc = parse_options(argc, argv, options, builtin_remote_usage,
692 PARSE_OPT_STOP_AT_NON_OPTION);
693
694 if (argc < 1)
695 result = show_all();
696 else if (!strcmp(argv[0], "add"))
697 result = add(argc, argv);
698 else if (!strcmp(argv[0], "rm"))
699 result = rm(argc, argv);
700 else if (!strcmp(argv[0], "show"))
701 result = show(argc, argv);
702 else if (!strcmp(argv[0], "prune"))
703 result = prune(argc, argv);
704 else if (!strcmp(argv[0], "update"))
705 result = update(argc, argv);
706 else {
707 error("Unknown subcommand: %s", argv[0]);
708 usage_with_options(builtin_remote_usage, options);
709 }
710
711 return result ? 1 : 0;
712}