commit-reach(repo_in_merge_bases_many): report missing commits
[git/gitster.git] / builtin / merge-base.c
blobb0b3838d5f148e07969e3a45460680216126ec6c
1 #include "builtin.h"
2 #include "config.h"
3 #include "commit.h"
4 #include "gettext.h"
5 #include "hex.h"
6 #include "object-name.h"
7 #include "parse-options.h"
8 #include "repository.h"
9 #include "commit-reach.h"
11 static int show_merge_base(struct commit **rev, int rev_nr, int show_all)
13 struct commit_list *result, *r;
15 result = repo_get_merge_bases_many_dirty(the_repository, rev[0],
16 rev_nr - 1, rev + 1);
18 if (!result)
19 return 1;
21 for (r = result; r; r = r->next) {
22 printf("%s\n", oid_to_hex(&r->item->object.oid));
23 if (!show_all)
24 break;
27 free_commit_list(result);
28 return 0;
31 static const char * const merge_base_usage[] = {
32 N_("git merge-base [-a | --all] <commit> <commit>..."),
33 N_("git merge-base [-a | --all] --octopus <commit>..."),
34 N_("git merge-base --is-ancestor <commit> <commit>"),
35 N_("git merge-base --independent <commit>..."),
36 N_("git merge-base --fork-point <ref> [<commit>]"),
37 NULL
40 static struct commit *get_commit_reference(const char *arg)
42 struct object_id revkey;
43 struct commit *r;
45 if (repo_get_oid(the_repository, arg, &revkey))
46 die("Not a valid object name %s", arg);
47 r = lookup_commit_reference(the_repository, &revkey);
48 if (!r)
49 die("Not a valid commit name %s", arg);
51 return r;
54 static int handle_independent(int count, const char **args)
56 struct commit_list *revs = NULL, *rev;
57 int i;
59 for (i = count - 1; i >= 0; i--)
60 commit_list_insert(get_commit_reference(args[i]), &revs);
62 reduce_heads_replace(&revs);
64 if (!revs)
65 return 1;
67 for (rev = revs; rev; rev = rev->next)
68 printf("%s\n", oid_to_hex(&rev->item->object.oid));
70 free_commit_list(revs);
71 return 0;
74 static int handle_octopus(int count, const char **args, int show_all)
76 struct commit_list *revs = NULL;
77 struct commit_list *result, *rev;
78 int i;
80 for (i = count - 1; i >= 0; i--)
81 commit_list_insert(get_commit_reference(args[i]), &revs);
83 result = get_octopus_merge_bases(revs);
84 free_commit_list(revs);
85 reduce_heads_replace(&result);
87 if (!result)
88 return 1;
90 for (rev = result; rev; rev = rev->next) {
91 printf("%s\n", oid_to_hex(&rev->item->object.oid));
92 if (!show_all)
93 break;
96 free_commit_list(result);
97 return 0;
100 static int handle_is_ancestor(int argc, const char **argv)
102 struct commit *one, *two;
103 int ret;
105 if (argc != 2)
106 die("--is-ancestor takes exactly two commits");
107 one = get_commit_reference(argv[0]);
108 two = get_commit_reference(argv[1]);
109 ret = repo_in_merge_bases(the_repository, one, two);
110 if (ret < 0)
111 exit(128);
112 if (ret)
113 return 0;
114 else
115 return 1;
118 static int handle_fork_point(int argc, const char **argv)
120 struct object_id oid;
121 struct commit *derived, *fork_point;
122 const char *commitname;
124 commitname = (argc == 2) ? argv[1] : "HEAD";
125 if (repo_get_oid(the_repository, commitname, &oid))
126 die("Not a valid object name: '%s'", commitname);
128 derived = lookup_commit_reference(the_repository, &oid);
130 fork_point = get_fork_point(argv[0], derived);
132 if (!fork_point)
133 return 1;
135 printf("%s\n", oid_to_hex(&fork_point->object.oid));
136 return 0;
139 int cmd_merge_base(int argc, const char **argv, const char *prefix)
141 struct commit **rev;
142 int rev_nr = 0;
143 int show_all = 0;
144 int cmdmode = 0;
145 int ret;
147 struct option options[] = {
148 OPT_BOOL('a', "all", &show_all, N_("output all common ancestors")),
149 OPT_CMDMODE(0, "octopus", &cmdmode,
150 N_("find ancestors for a single n-way merge"), 'o'),
151 OPT_CMDMODE(0, "independent", &cmdmode,
152 N_("list revs not reachable from others"), 'r'),
153 OPT_CMDMODE(0, "is-ancestor", &cmdmode,
154 N_("is the first one ancestor of the other?"), 'a'),
155 OPT_CMDMODE(0, "fork-point", &cmdmode,
156 N_("find where <commit> forked from reflog of <ref>"), 'f'),
157 OPT_END()
160 git_config(git_default_config, NULL);
161 argc = parse_options(argc, argv, prefix, options, merge_base_usage, 0);
163 if (cmdmode == 'a') {
164 if (argc < 2)
165 usage_with_options(merge_base_usage, options);
166 if (show_all)
167 die(_("options '%s' and '%s' cannot be used together"),
168 "--is-ancestor", "--all");
169 return handle_is_ancestor(argc, argv);
172 if (cmdmode == 'r' && show_all)
173 die(_("options '%s' and '%s' cannot be used together"),
174 "--independent", "--all");
176 if (cmdmode == 'o')
177 return handle_octopus(argc, argv, show_all);
179 if (cmdmode == 'r')
180 return handle_independent(argc, argv);
182 if (cmdmode == 'f') {
183 if (argc < 1 || 2 < argc)
184 usage_with_options(merge_base_usage, options);
185 return handle_fork_point(argc, argv);
188 if (argc < 2)
189 usage_with_options(merge_base_usage, options);
191 ALLOC_ARRAY(rev, argc);
192 while (argc-- > 0)
193 rev[rev_nr++] = get_commit_reference(*argv++);
194 ret = show_merge_base(rev, rev_nr, show_all);
195 free(rev);
196 return ret;