X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=commit-tree.c;h=4fe64ce0b4f99e749a6358dab2c72c36ff98e139;hb=eeb7991695b0944e4e8d6474b8f7cd2da8830b20;hp=840307af0cfaab31555795ce7175d5e9c9f981a0;hpb=e83c5163316f89bfbde7d9ab23ca2e25604af290;p=git.git diff --git a/commit-tree.c b/commit-tree.c index 840307af..4fe64ce0 100644 --- a/commit-tree.c +++ b/commit-tree.c @@ -1,3 +1,8 @@ +/* + * GIT - The information manager from hell + * + * Copyright (C) Linus Torvalds, 2005 + */ #include "cache.h" #include @@ -106,6 +111,7 @@ int main(int argc, char **argv) int parents = 0; unsigned char tree_sha1[20]; unsigned char parent_sha1[MAXPARENT][20]; + unsigned char commit_sha1[20]; char *gecos, *realgecos; char *email, realemail[1000]; char *date, *realdate; @@ -167,6 +173,7 @@ int main(int argc, char **argv) finish_buffer("commit ", &buffer, &size); - write_sha1_file(buffer, size); + write_sha1_file(buffer, size, commit_sha1); + printf("%s\n", sha1_to_hex(commit_sha1)); return 0; }