2005-04-08 00:16:10 +02:00
|
|
|
/*
|
|
|
|
* GIT - The information manager from hell
|
|
|
|
*
|
|
|
|
* Copyright (C) Linus Torvalds, 2005
|
|
|
|
*/
|
2005-04-08 00:13:13 +02:00
|
|
|
#include "cache.h"
|
2006-04-02 14:44:09 +02:00
|
|
|
#include "tree.h"
|
2006-04-24 01:52:35 +02:00
|
|
|
#include "cache-tree.h"
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2006-04-24 01:52:35 +02:00
|
|
|
static int missing_ok = 0;
|
2006-04-26 10:20:50 +02:00
|
|
|
static char *prefix = NULL;
|
2005-04-10 02:09:34 +02:00
|
|
|
|
2006-04-26 10:20:50 +02:00
|
|
|
static const char write_tree_usage[] =
|
|
|
|
"git-write-tree [--missing-ok] [--prefix=<prefix>/]";
|
2005-12-06 07:30:07 +01:00
|
|
|
|
2006-04-25 06:18:58 +02:00
|
|
|
static struct cache_file cache_file;
|
|
|
|
|
2005-04-10 02:09:34 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2006-04-25 06:18:58 +02:00
|
|
|
int entries, was_valid, newfd;
|
2006-04-24 01:52:35 +02:00
|
|
|
|
2005-11-26 09:50:02 +01:00
|
|
|
setup_git_directory();
|
|
|
|
|
2006-04-25 06:18:58 +02:00
|
|
|
newfd = hold_index_file_for_update(&cache_file, get_index_file());
|
|
|
|
entries = read_cache();
|
2006-04-26 10:20:50 +02:00
|
|
|
|
|
|
|
while (1 < argc) {
|
|
|
|
char *arg = argv[1];
|
|
|
|
if (!strcmp(arg, "--missing-ok"))
|
2005-07-11 05:53:44 +02:00
|
|
|
missing_ok = 1;
|
2006-04-26 10:20:50 +02:00
|
|
|
else if (!strncmp(arg, "--prefix=", 9))
|
|
|
|
prefix = arg + 9;
|
2005-07-11 05:53:44 +02:00
|
|
|
else
|
2005-12-06 07:30:07 +01:00
|
|
|
die(write_tree_usage);
|
2006-04-26 10:20:50 +02:00
|
|
|
argc--; argv++;
|
2005-07-11 05:53:44 +02:00
|
|
|
}
|
2006-04-26 10:20:50 +02:00
|
|
|
|
2005-07-29 11:00:45 +02:00
|
|
|
if (argc > 2)
|
2005-07-11 05:53:44 +02:00
|
|
|
die("too many options");
|
2005-04-10 02:09:34 +02:00
|
|
|
|
2005-05-08 16:15:59 +02:00
|
|
|
if (entries < 0)
|
2005-05-19 13:17:16 +02:00
|
|
|
die("git-write-tree: error reading cache");
|
2005-04-16 07:04:54 +02:00
|
|
|
|
2006-04-25 06:18:58 +02:00
|
|
|
if (!active_cache_tree)
|
|
|
|
active_cache_tree = cache_tree();
|
|
|
|
|
|
|
|
was_valid = cache_tree_fully_valid(active_cache_tree);
|
|
|
|
if (!was_valid) {
|
|
|
|
if (cache_tree_update(active_cache_tree,
|
|
|
|
active_cache, active_nr,
|
2006-04-28 01:21:54 +02:00
|
|
|
missing_ok, 0) < 0)
|
2006-04-25 06:18:58 +02:00
|
|
|
die("git-write-tree: error building trees");
|
|
|
|
if (0 <= newfd) {
|
|
|
|
if (!write_cache(newfd, active_cache, active_nr))
|
|
|
|
commit_index_file(&cache_file);
|
|
|
|
}
|
|
|
|
/* Not being able to write is fine -- we are only interested
|
|
|
|
* in updating the cache-tree part, and if the next caller
|
|
|
|
* ends up using the old index with unupdated cache-tree part
|
|
|
|
* it misses the work we did here, but that is just a
|
|
|
|
* performance penalty and not a big deal.
|
|
|
|
*/
|
|
|
|
}
|
2006-04-26 10:20:50 +02:00
|
|
|
if (prefix) {
|
|
|
|
struct cache_tree *subtree =
|
|
|
|
cache_tree_find(active_cache_tree, prefix);
|
|
|
|
printf("%s\n", sha1_to_hex(subtree->sha1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf("%s\n", sha1_to_hex(active_cache_tree->sha1));
|
2005-04-08 00:13:13 +02:00
|
|
|
return 0;
|
|
|
|
}
|