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;
|
2005-04-10 02:09:34 +02:00
|
|
|
|
2005-12-06 07:30:07 +01:00
|
|
|
static const char write_tree_usage[] = "git-write-tree [--missing-ok]";
|
|
|
|
|
2006-06-06 21:51:49 +02:00
|
|
|
static struct lock_file lock_file;
|
2006-04-25 06:18:58 +02:00
|
|
|
|
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-06-06 21:51:49 +02:00
|
|
|
newfd = hold_lock_file_for_update(&lock_file, get_index_file());
|
2006-04-25 06:18:58 +02:00
|
|
|
entries = read_cache();
|
2005-07-29 11:00:45 +02:00
|
|
|
if (argc == 2) {
|
2005-07-11 05:53:44 +02:00
|
|
|
if (!strcmp(argv[1], "--missing-ok"))
|
|
|
|
missing_ok = 1;
|
|
|
|
else
|
2005-12-06 07:30:07 +01:00
|
|
|
die(write_tree_usage);
|
2005-07-11 05:53:44 +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))
|
2006-06-06 21:51:49 +02:00
|
|
|
commit_lock_file(&lock_file);
|
2006-04-25 06:18:58 +02:00
|
|
|
}
|
|
|
|
/* 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-24 01:52:35 +02:00
|
|
|
printf("%s\n", sha1_to_hex(active_cache_tree->sha1));
|
2005-04-08 00:13:13 +02:00
|
|
|
return 0;
|
|
|
|
}
|