2007-07-15 01:14:45 +02:00
|
|
|
#include "builtin.h"
|
2005-04-17 21:18:17 +02:00
|
|
|
#include "cache.h"
|
2005-04-18 20:39:48 +02:00
|
|
|
#include "commit.h"
|
2008-10-02 14:59:19 +02:00
|
|
|
#include "parse-options.h"
|
2005-04-17 21:18:17 +02:00
|
|
|
|
2008-07-30 07:04:14 +02:00
|
|
|
static int show_merge_base(struct commit **rev, int rev_nr, int show_all)
|
2006-06-29 15:16:46 +02:00
|
|
|
{
|
2008-07-30 07:04:14 +02:00
|
|
|
struct commit_list *result;
|
|
|
|
|
|
|
|
result = get_merge_bases_many(rev[0], rev_nr - 1, rev + 1, 0);
|
2006-06-29 15:16:46 +02:00
|
|
|
|
|
|
|
if (!result)
|
|
|
|
return 1;
|
|
|
|
|
2005-08-24 06:08:59 +02:00
|
|
|
while (result) {
|
2006-06-29 15:16:46 +02:00
|
|
|
printf("%s\n", sha1_to_hex(result->item->object.sha1));
|
2005-08-24 06:08:59 +02:00
|
|
|
if (!show_all)
|
|
|
|
return 0;
|
2006-06-29 15:16:46 +02:00
|
|
|
result = result->next;
|
2005-08-24 06:08:59 +02:00
|
|
|
}
|
2006-06-29 15:16:46 +02:00
|
|
|
|
2005-08-24 06:08:59 +02:00
|
|
|
return 0;
|
2005-04-17 21:18:17 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 14:59:19 +02:00
|
|
|
static const char * const merge_base_usage[] = {
|
2009-08-05 09:59:19 +02:00
|
|
|
"git merge-base [-a|--all] <commit> <commit>...",
|
2008-10-02 14:59:19 +02:00
|
|
|
NULL
|
|
|
|
};
|
2005-08-24 06:08:59 +02:00
|
|
|
|
2008-07-29 07:42:53 +02:00
|
|
|
static struct commit *get_commit_reference(const char *arg)
|
|
|
|
{
|
|
|
|
unsigned char revkey[20];
|
|
|
|
struct commit *r;
|
|
|
|
|
|
|
|
if (get_sha1(arg, revkey))
|
|
|
|
die("Not a valid object name %s", arg);
|
|
|
|
r = lookup_commit_reference(revkey);
|
|
|
|
if (!r)
|
|
|
|
die("Not a valid commit name %s", arg);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-01-09 09:50:02 +01:00
|
|
|
int cmd_merge_base(int argc, const char **argv, const char *prefix)
|
2005-04-17 21:18:17 +02:00
|
|
|
{
|
2008-07-30 07:04:14 +02:00
|
|
|
struct commit **rev;
|
|
|
|
int rev_nr = 0;
|
2007-01-09 09:50:02 +01:00
|
|
|
int show_all = 0;
|
2005-04-17 21:18:17 +02:00
|
|
|
|
2008-10-02 14:59:19 +02:00
|
|
|
struct option options[] = {
|
|
|
|
OPT_BOOLEAN('a', "all", &show_all, "outputs all common ancestors"),
|
|
|
|
OPT_END()
|
|
|
|
};
|
2008-07-30 07:04:14 +02:00
|
|
|
|
2008-10-02 14:59:19 +02:00
|
|
|
git_config(git_default_config, NULL);
|
2009-05-23 20:53:12 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, options, merge_base_usage, 0);
|
2008-10-02 14:59:19 +02:00
|
|
|
if (argc < 2)
|
|
|
|
usage_with_options(merge_base_usage, options);
|
|
|
|
rev = xmalloc(argc * sizeof(*rev));
|
|
|
|
while (argc-- > 0)
|
|
|
|
rev[rev_nr++] = get_commit_reference(*argv++);
|
2008-07-30 07:04:14 +02:00
|
|
|
return show_merge_base(rev, rev_nr, show_all);
|
2005-04-17 21:18:17 +02:00
|
|
|
}
|