rev-list.c 523 字节
Newer Older
1 2 3 4 5 6 7 8 9
#include "cache.h"
#include "commit.h"

int main(int argc, char **argv)
{
	unsigned char sha1[20];
	struct commit_list *list = NULL;
	struct commit *commit;

10
	if (argc != 2 || get_sha1(argv[1], sha1))
11 12 13 14 15 16 17 18
		usage("rev-list <commit-id>");

	commit = lookup_commit(sha1);
	if (!commit || parse_commit(commit) < 0)
		die("bad commit object");

	commit_list_insert(commit, &list);
	do {
19
		struct commit *commit = pop_most_recent_commit(&list, 0x1);
20 21 22 23
		printf("%s\n", sha1_to_hex(commit->object.sha1));
	} while (list);
	return 0;
}