X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=commit-tree.c;h=16c17871334601b0b3c211cbedd8e8291af261a3;hb=13ccd6d4f2086ace8f70dc8a60a40ac5836dc881;hp=8f3b96c26df714554eb274999e185394a4c3f420;hpb=6aa33f4035d547ac2bd629b1cfd9c46262809d73;p=git.git diff --git a/commit-tree.c b/commit-tree.c index 8f3b96c2..16c17871 100644 --- a/commit-tree.c +++ b/commit-tree.c @@ -5,10 +5,6 @@ */ #include "cache.h" -#include -#include -#include - #define BLOCKING (1ul << 14) /* @@ -64,7 +60,7 @@ static void check_valid(unsigned char *sha1, const char *expect) #define MAXPARENT (16) static unsigned char parent_sha1[MAXPARENT][20]; -static char *commit_tree_usage = "git-commit-tree [-p ]* < changelog"; +static const char commit_tree_usage[] = "git-commit-tree [-p ]* < changelog"; static int new_parent(int idx) { @@ -79,16 +75,6 @@ static int new_parent(int idx) return 1; } -static char *git_author_info(void) -{ - return get_ident(gitenv("GIT_AUTHOR_NAME"), gitenv("GIT_AUTHOR_EMAIL"), gitenv("GIT_AUTHOR_DATE")); -} - -static char *git_committer_info(void) -{ - return get_ident(gitenv("GIT_COMMITTER_NAME"), gitenv("GIT_COMMITTER_EMAIL"), gitenv("GIT_COMMITTER_DATE")); -} - int main(int argc, char **argv) { int i; @@ -99,6 +85,11 @@ int main(int argc, char **argv) char *buffer; unsigned int size; + setup_ident(); + setup_git_directory(); + + git_config(git_default_config); + if (argc < 2 || get_sha1_hex(argv[1], tree_sha1) < 0) usage(commit_tree_usage); @@ -114,7 +105,6 @@ int main(int argc, char **argv) } if (!parents) fprintf(stderr, "Committing initial tree %s\n", argv[1]); - setup_ident(); init_buffer(&buffer, &size); add_buffer(&buffer, &size, "tree %s\n", sha1_to_hex(tree_sha1)); @@ -128,14 +118,17 @@ int main(int argc, char **argv) add_buffer(&buffer, &size, "parent %s\n", sha1_to_hex(parent_sha1[i])); /* Person/date information */ - add_buffer(&buffer, &size, "author %s\n", git_author_info()); - add_buffer(&buffer, &size, "committer %s\n\n", git_committer_info()); + add_buffer(&buffer, &size, "author %s\n", git_author_info(1)); + add_buffer(&buffer, &size, "committer %s\n\n", git_committer_info(1)); /* And add the comment */ while (fgets(comment, sizeof(comment), stdin) != NULL) add_buffer(&buffer, &size, "%s", comment); - write_sha1_file(buffer, size, "commit", commit_sha1); - printf("%s\n", sha1_to_hex(commit_sha1)); - return 0; + if (!write_sha1_file(buffer, size, "commit", commit_sha1)) { + printf("%s\n", sha1_to_hex(commit_sha1)); + return 0; + } + else + return 1; }