2005-04-08 02:16:10 +04:00
|
|
|
/*
|
|
|
|
* GIT - The information manager from hell
|
|
|
|
*
|
|
|
|
* Copyright (C) Linus Torvalds, 2005
|
|
|
|
*/
|
2005-04-08 02:13:13 +04:00
|
|
|
#include "cache.h"
|
2006-04-02 16:44:09 +04:00
|
|
|
#include "tree.h"
|
2006-04-24 03:52:35 +04:00
|
|
|
#include "cache-tree.h"
|
2005-04-08 02:13:13 +04:00
|
|
|
|
2006-04-24 03:52:35 +04:00
|
|
|
static unsigned char active_cache_sha1[20];
|
|
|
|
static struct cache_tree *active_cache_tree;
|
2005-04-10 04:09:34 +04:00
|
|
|
|
2006-04-24 03:52:35 +04:00
|
|
|
static int missing_ok = 0;
|
2005-04-10 04:09:34 +04:00
|
|
|
|
2005-12-06 09:30:07 +03:00
|
|
|
static const char write_tree_usage[] = "git-write-tree [--missing-ok]";
|
|
|
|
|
2005-04-10 04:09:34 +04:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2005-11-26 11:50:02 +03:00
|
|
|
int entries;
|
2006-04-24 03:52:35 +04:00
|
|
|
|
2005-11-26 11:50:02 +03:00
|
|
|
setup_git_directory();
|
|
|
|
|
2006-04-24 03:52:35 +04:00
|
|
|
entries = read_cache_1(active_cache_sha1);
|
|
|
|
active_cache_tree = read_cache_tree(active_cache_sha1);
|
2005-07-29 13:00:45 +04:00
|
|
|
if (argc == 2) {
|
2005-07-11 07:53:44 +04:00
|
|
|
if (!strcmp(argv[1], "--missing-ok"))
|
|
|
|
missing_ok = 1;
|
|
|
|
else
|
2005-12-06 09:30:07 +03:00
|
|
|
die(write_tree_usage);
|
2005-07-11 07:53:44 +04:00
|
|
|
}
|
|
|
|
|
2005-07-29 13:00:45 +04:00
|
|
|
if (argc > 2)
|
2005-07-11 07:53:44 +04:00
|
|
|
die("too many options");
|
2005-04-10 04:09:34 +04:00
|
|
|
|
2005-05-08 18:15:59 +04:00
|
|
|
if (entries < 0)
|
2005-05-19 15:17:16 +04:00
|
|
|
die("git-write-tree: error reading cache");
|
2005-04-16 09:04:54 +04:00
|
|
|
|
2006-04-24 03:52:35 +04:00
|
|
|
if (cache_tree_update(active_cache_tree, active_cache, active_nr,
|
|
|
|
missing_ok))
|
|
|
|
die("git-write-tree: error building trees");
|
|
|
|
write_cache_tree(active_cache_sha1, active_cache_tree);
|
2005-04-16 09:04:54 +04:00
|
|
|
|
2006-04-24 03:52:35 +04:00
|
|
|
printf("%s\n", sha1_to_hex(active_cache_tree->sha1));
|
2005-04-08 02:13:13 +04:00
|
|
|
return 0;
|
|
|
|
}
|