diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-03 23:46:02 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-03 23:46:02 -0800 |
commit | 423325a2d24638ddcc82ce47be5e40be550f4507 (patch) | |
tree | 00960b001d786299d3da04a4467bd0c798bf8cda /write-tree.c | |
parent | GIT 0.99.9k (diff) | |
parent | [PATCH] daemon.c and path.enter_repo(): revamp path validation. (diff) | |
download | tgif-423325a2d24638ddcc82ce47be5e40be550f4507.tar.xz |
GIT 0.99.9l aka 1.0rc4
Diffstat (limited to 'write-tree.c')
-rw-r--r-- | write-tree.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/write-tree.c b/write-tree.c index 2b2c6b77af..0aac32f227 100644 --- a/write-tree.c +++ b/write-tree.c @@ -86,9 +86,12 @@ static int write_tree(struct cache_entry **cachep, int maxentries, const char *b int main(int argc, char **argv) { int i, funny; - int entries = read_cache(); + int entries; unsigned char sha1[20]; + setup_git_directory(); + + entries = read_cache(); if (argc == 2) { if (!strcmp(argv[1], "--missing-ok")) missing_ok = 1; |