2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
9 #include "cache-tree.h"
11 static const char write_tree_usage[] =
12 "git-write-tree [--missing-ok] [--prefix=<prefix>/]";
14 int write_tree(unsigned char *sha1, int missing_ok, const char *prefix)
16 int entries, was_valid, newfd;
18 /* We can't free this memory, it becomes part of a linked list parsed atexit() */
19 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
21 newfd = hold_locked_index(lock_file, 1);
23 entries = read_cache();
25 die("git-write-tree: error reading cache");
27 if (!active_cache_tree)
28 active_cache_tree = cache_tree();
30 was_valid = cache_tree_fully_valid(active_cache_tree);
33 if (cache_tree_update(active_cache_tree,
34 active_cache, active_nr,
36 die("git-write-tree: error building trees");
38 if (!write_cache(newfd, active_cache, active_nr)
40 commit_lock_file(lock_file);
44 /* Not being able to write is fine -- we are only interested
45 * in updating the cache-tree part, and if the next caller
46 * ends up using the old index with unupdated cache-tree part
47 * it misses the work we did here, but that is just a
48 * performance penalty and not a big deal.
53 struct cache_tree *subtree =
54 cache_tree_find(active_cache_tree, prefix);
56 die("git-write-tree: prefix %s not found", prefix);
57 hashcpy(sha1, subtree->sha1);
60 hashcpy(sha1, active_cache_tree->sha1);
64 rollback_lock_file(lock_file);
69 int cmd_write_tree(int argc, const char **argv, const char *unused_prefix)
71 int missing_ok = 0, ret;
72 const char *prefix = NULL;
73 unsigned char sha1[20];
75 git_config(git_default_config);
77 const char *arg = argv[1];
78 if (!strcmp(arg, "--missing-ok"))
80 else if (!prefixcmp(arg, "--prefix="))
83 usage(write_tree_usage);
88 die("too many options");
90 ret = write_tree(sha1, missing_ok, prefix);
91 printf("%s\n", sha1_to_hex(sha1));