Beispiel #1
0
int cmd_merge_base(int argc, const char **argv, const char *prefix)
{
	struct commit **rev;
	int rev_nr = 0;
	int show_all = 0;
	int cmdmode = 0;

	struct option options[] = {
		OPT_BOOL('a', "all", &show_all, N_("output all common ancestors")),
		OPT_CMDMODE(0, "octopus", &cmdmode,
			    N_("find ancestors for a single n-way merge"), 'o'),
		OPT_CMDMODE(0, "independent", &cmdmode,
			    N_("list revs not reachable from others"), 'r'),
		OPT_CMDMODE(0, "is-ancestor", &cmdmode,
			    N_("is the first one ancestor of the other?"), 'a'),
		OPT_CMDMODE(0, "fork-point", &cmdmode,
			    N_("find where <commit> forked from reflog of <ref>"), 'f'),
		OPT_END()
	};

	git_config(git_default_config, NULL);
	argc = parse_options(argc, argv, prefix, options, merge_base_usage, 0);

	if (cmdmode == 'a') {
		if (argc < 2)
			usage_with_options(merge_base_usage, options);
		if (show_all)
			die("--is-ancestor cannot be used with --all");
		return handle_is_ancestor(argc, argv);
	}

	if (cmdmode == 'r' && show_all)
		die("--independent cannot be used with --all");

	if (cmdmode == 'o')
		return handle_octopus(argc, argv, show_all);

	if (cmdmode == 'r')
		return handle_independent(argc, argv);

	if (cmdmode == 'f') {
		if (argc < 1 || 2 < argc)
			usage_with_options(merge_base_usage, options);
		return handle_fork_point(argc, argv);
	}

	if (argc < 2)
		usage_with_options(merge_base_usage, options);

	ALLOC_ARRAY(rev, argc);
	while (argc-- > 0)
		rev[rev_nr++] = get_commit_reference(*argv++);
	return show_merge_base(rev, rev_nr, show_all);
}
Beispiel #2
0
int cmd_merge_base(int argc, const char **argv, const char *prefix)
{
    struct commit **rev;
    int rev_nr = 0;
    int show_all = 0;
    int octopus = 0;
    int reduce = 0;
    int is_ancestor = 0;

    struct option options[] = {
        OPT_BOOLEAN('a', "all", &show_all, N_("output all common ancestors")),
        OPT_BOOLEAN(0, "octopus", &octopus, N_("find ancestors for a single n-way merge")),
        OPT_BOOLEAN(0, "independent", &reduce, N_("list revs not reachable from others")),
        OPT_BOOLEAN(0, "is-ancestor", &is_ancestor,
        N_("is the first one ancestor of the other?")),
        OPT_END()
    };

    git_config(git_default_config, NULL);
    argc = parse_options(argc, argv, prefix, options, merge_base_usage, 0);
    if (!octopus && !reduce && argc < 2)
        usage_with_options(merge_base_usage, options);
    if (is_ancestor && (show_all | octopus | reduce))
        die("--is-ancestor cannot be used with other options");
    if (is_ancestor)
        return handle_is_ancestor(argc, argv);
    if (reduce && (show_all || octopus))
        die("--independent cannot be used with other options");

    if (octopus || reduce)
        return handle_octopus(argc, argv, reduce, show_all);

    rev = xmalloc(argc * sizeof(*rev));
    while (argc-- > 0)
        rev[rev_nr++] = get_commit_reference(*argv++);
    return show_merge_base(rev, rev_nr, show_all);
}