X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=commit-tree.c;h=b60299fed0442edec21f123e92774238d4533bea;hb=794f9fe7db30e2aff8f8f0543c6d18bf579cdbc2;hp=b1ef0b590ab879fbbc93d04a2f8f488a223ea58d;hpb=379955c696a417f0fb6118f2fd91dbffd2816ad1;p=git.git diff --git a/commit-tree.c b/commit-tree.c index b1ef0b59..b60299fe 100644 --- a/commit-tree.c +++ b/commit-tree.c @@ -5,10 +5,6 @@ */ #include "cache.h" -#include -#include -#include - #define BLOCKING (1ul << 14) /* @@ -89,6 +85,9 @@ int main(int argc, char **argv) char *buffer; unsigned int size; + setup_ident(); + git_config(git_default_config); + if (argc < 2 || get_sha1_hex(argv[1], tree_sha1) < 0) usage(commit_tree_usage); @@ -104,7 +103,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));