2005-04-24 04:04:40 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "commit.h"
|
|
|
|
|
2005-05-26 03:29:09 +02:00
|
|
|
static const char rev_list_usage[] =
|
|
|
|
"usage: git-rev-list [OPTION] commit-id <commit-id>\n"
|
|
|
|
" --max-count=nr\n"
|
|
|
|
" --max-age=epoch\n"
|
|
|
|
" --min-age=epoch\n"
|
|
|
|
" --header";
|
|
|
|
|
2005-04-24 04:04:40 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2005-05-26 03:29:09 +02:00
|
|
|
int nr_sha;
|
|
|
|
unsigned char sha1[2][20];
|
2005-04-24 04:04:40 +02:00
|
|
|
struct commit_list *list = NULL;
|
2005-05-26 03:29:09 +02:00
|
|
|
struct commit *commit, *end;
|
|
|
|
int i, verbose_header = 0;
|
2005-05-06 10:00:11 +02:00
|
|
|
unsigned long max_age = -1;
|
|
|
|
unsigned long min_age = -1;
|
|
|
|
int max_count = -1;
|
2005-04-24 04:04:40 +02:00
|
|
|
|
2005-05-26 03:29:09 +02:00
|
|
|
nr_sha = 0;
|
2005-05-06 10:00:11 +02:00
|
|
|
for (i = 1 ; i < argc; i++) {
|
|
|
|
char *arg = argv[i];
|
|
|
|
|
|
|
|
if (!strncmp(arg, "--max-count=", 12)) {
|
|
|
|
max_count = atoi(arg + 12);
|
2005-05-26 03:29:09 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strncmp(arg, "--max-age=", 10)) {
|
2005-05-06 10:00:11 +02:00
|
|
|
max_age = atoi(arg + 10);
|
2005-05-26 03:29:09 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strncmp(arg, "--min-age=", 10)) {
|
2005-05-06 10:00:11 +02:00
|
|
|
min_age = atoi(arg + 10);
|
2005-05-26 03:29:09 +02:00
|
|
|
continue;
|
2005-05-06 10:00:11 +02:00
|
|
|
}
|
2005-05-26 03:29:09 +02:00
|
|
|
if (!strcmp(arg, "--header")) {
|
|
|
|
verbose_header = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nr_sha > 2 || get_sha1(arg, sha1[nr_sha]))
|
|
|
|
usage(rev_list_usage);
|
|
|
|
nr_sha++;
|
2005-05-06 10:00:11 +02:00
|
|
|
}
|
|
|
|
|
2005-05-26 03:29:09 +02:00
|
|
|
if (!nr_sha)
|
|
|
|
usage(rev_list_usage);
|
2005-04-24 04:04:40 +02:00
|
|
|
|
2005-05-26 03:29:09 +02:00
|
|
|
commit = lookup_commit_reference(sha1[0]);
|
2005-04-24 04:04:40 +02:00
|
|
|
if (!commit || parse_commit(commit) < 0)
|
2005-05-26 03:29:09 +02:00
|
|
|
die("bad starting commit object");
|
|
|
|
|
|
|
|
end = NULL;
|
|
|
|
if (nr_sha > 1) {
|
|
|
|
end = lookup_commit_reference(sha1[1]);
|
|
|
|
if (!end || parse_commit(end) < 0)
|
|
|
|
die("bad ending commit object");
|
|
|
|
}
|
2005-04-24 04:04:40 +02:00
|
|
|
|
|
|
|
commit_list_insert(commit, &list);
|
|
|
|
do {
|
2005-04-24 05:29:22 +02:00
|
|
|
struct commit *commit = pop_most_recent_commit(&list, 0x1);
|
2005-05-06 10:00:11 +02:00
|
|
|
|
2005-05-26 03:29:09 +02:00
|
|
|
if (commit == end)
|
|
|
|
break;
|
2005-05-06 10:00:11 +02:00
|
|
|
if (min_age != -1 && (commit->date > min_age))
|
|
|
|
continue;
|
|
|
|
if (max_age != -1 && (commit->date < max_age))
|
|
|
|
break;
|
|
|
|
if (max_count != -1 && !max_count--)
|
|
|
|
break;
|
2005-04-24 04:04:40 +02:00
|
|
|
printf("%s\n", sha1_to_hex(commit->object.sha1));
|
2005-05-26 03:29:09 +02:00
|
|
|
if (verbose_header)
|
|
|
|
printf("%s%c", commit->buffer, 0);
|
2005-04-24 04:04:40 +02:00
|
|
|
} while (list);
|
|
|
|
return 0;
|
|
|
|
}
|