2005-04-19 23:00:34 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "commit.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Show one commit
|
|
|
|
*/
|
2005-05-20 20:46:10 +02:00
|
|
|
static void show_commit(struct commit *commit)
|
2005-04-19 23:00:34 +02:00
|
|
|
{
|
|
|
|
char cmdline[400];
|
|
|
|
char hex[100];
|
|
|
|
|
|
|
|
strcpy(hex, sha1_to_hex(commit->object.sha1));
|
|
|
|
printf("Id: %s\n", hex);
|
|
|
|
fflush(NULL);
|
2005-05-02 06:23:04 +02:00
|
|
|
sprintf(cmdline, "git-cat-file commit %s", hex);
|
2005-04-19 23:00:34 +02:00
|
|
|
system(cmdline);
|
|
|
|
if (commit->parents) {
|
|
|
|
char *against = sha1_to_hex(commit->parents->item->object.sha1);
|
|
|
|
printf("\n\n======== diff against %s ========\n", against);
|
|
|
|
fflush(NULL);
|
2005-04-29 23:54:50 +02:00
|
|
|
sprintf(cmdline, "git-diff-tree -p %s %s", against, hex);
|
2005-04-19 23:00:34 +02:00
|
|
|
system(cmdline);
|
|
|
|
}
|
|
|
|
printf("======== end ========\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Show all unseen commits, depth-first
|
|
|
|
*/
|
2005-05-20 20:46:10 +02:00
|
|
|
static void show_unseen(struct commit *top)
|
2005-04-19 23:00:34 +02:00
|
|
|
{
|
|
|
|
struct commit_list *parents;
|
|
|
|
|
|
|
|
if (top->object.flags & 2)
|
|
|
|
return;
|
|
|
|
top->object.flags |= 2;
|
|
|
|
parents = top->parents;
|
|
|
|
while (parents) {
|
|
|
|
show_unseen(parents->item);
|
|
|
|
parents = parents->next;
|
|
|
|
}
|
|
|
|
show_commit(top);
|
|
|
|
}
|
|
|
|
|
2005-05-20 20:46:10 +02:00
|
|
|
static void export(struct commit *top, struct commit *base)
|
2005-04-19 23:00:34 +02:00
|
|
|
{
|
|
|
|
mark_reachable(&top->object, 1);
|
|
|
|
if (base)
|
|
|
|
mark_reachable(&base->object, 2);
|
|
|
|
show_unseen(top);
|
|
|
|
}
|
|
|
|
|
2005-05-20 20:46:10 +02:00
|
|
|
static struct commit *get_commit(unsigned char *sha1)
|
2005-04-19 23:00:34 +02:00
|
|
|
{
|
|
|
|
struct commit *commit = lookup_commit(sha1);
|
|
|
|
if (!commit->object.parsed) {
|
|
|
|
struct commit_list *parents;
|
|
|
|
|
|
|
|
if (parse_commit(commit) < 0)
|
|
|
|
die("unable to parse commit %s", sha1_to_hex(sha1));
|
|
|
|
parents = commit->parents;
|
|
|
|
while (parents) {
|
|
|
|
get_commit(parents->item->object.sha1);
|
|
|
|
parents = parents->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return commit;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
unsigned char base_sha1[20];
|
|
|
|
unsigned char top_sha1[20];
|
|
|
|
|
|
|
|
if (argc < 2 || argc > 4 ||
|
2005-05-02 01:36:56 +02:00
|
|
|
get_sha1(argv[1], top_sha1) ||
|
|
|
|
(argc == 3 && get_sha1(argv[2], base_sha1)))
|
2005-04-19 23:00:34 +02:00
|
|
|
usage("git-export top [base]");
|
|
|
|
export(get_commit(top_sha1), argc==3 ? get_commit(base_sha1) : NULL);
|
|
|
|
return 0;
|
|
|
|
}
|