2005-04-08 00:16:10 +02:00
|
|
|
/*
|
|
|
|
* GIT - The information manager from hell
|
|
|
|
*
|
|
|
|
* Copyright (C) Linus Torvalds, 2005
|
|
|
|
*/
|
2006-06-13 22:21:42 +02:00
|
|
|
#include "builtin.h"
|
2005-04-08 00:13:13 +02:00
|
|
|
#include "cache.h"
|
2017-06-14 20:07:36 +02:00
|
|
|
#include "config.h"
|
2006-04-02 14:44:09 +02:00
|
|
|
#include "tree.h"
|
2006-04-24 01:52:35 +02:00
|
|
|
#include "cache-tree.h"
|
2009-07-08 07:15:38 +02:00
|
|
|
#include "parse-options.h"
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2009-07-08 07:15:38 +02:00
|
|
|
static const char * const write_tree_usage[] = {
|
2012-08-20 14:32:53 +02:00
|
|
|
N_("git write-tree [--missing-ok] [--prefix=<prefix>/]"),
|
2009-07-08 07:15:38 +02:00
|
|
|
NULL
|
|
|
|
};
|
2005-12-06 07:30:07 +01:00
|
|
|
|
2006-07-29 07:44:25 +02:00
|
|
|
int cmd_write_tree(int argc, const char **argv, const char *unused_prefix)
|
2006-06-13 22:21:42 +02:00
|
|
|
{
|
2009-05-20 20:04:35 +02:00
|
|
|
int flags = 0, ret;
|
2006-06-13 22:21:42 +02:00
|
|
|
const char *prefix = NULL;
|
2018-03-12 03:27:22 +01:00
|
|
|
struct object_id oid;
|
2008-01-11 07:49:35 +01:00
|
|
|
const char *me = "git-write-tree";
|
2009-07-08 07:15:38 +02:00
|
|
|
struct option write_tree_options[] = {
|
2012-08-20 14:32:53 +02:00
|
|
|
OPT_BIT(0, "missing-ok", &flags, N_("allow missing objects"),
|
2009-07-08 07:15:38 +02:00
|
|
|
WRITE_TREE_MISSING_OK),
|
2018-08-02 21:18:14 +02:00
|
|
|
OPT_STRING(0, "prefix", &prefix, N_("<prefix>/"),
|
|
|
|
N_("write tree object for a subdirectory <prefix>")),
|
2009-07-08 07:15:38 +02:00
|
|
|
{ OPTION_BIT, 0, "ignore-cache-tree", &flags, NULL,
|
2012-08-20 14:32:53 +02:00
|
|
|
N_("only useful for debugging"),
|
2009-07-08 07:15:38 +02:00
|
|
|
PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, NULL,
|
|
|
|
WRITE_TREE_IGNORE_CACHE_TREE },
|
|
|
|
OPT_END()
|
|
|
|
};
|
2006-06-13 22:21:42 +02:00
|
|
|
|
2008-05-14 19:46:53 +02:00
|
|
|
git_config(git_default_config, NULL);
|
2009-07-08 07:15:38 +02:00
|
|
|
argc = parse_options(argc, argv, unused_prefix, write_tree_options,
|
|
|
|
write_tree_usage, 0);
|
2006-06-13 22:21:42 +02:00
|
|
|
|
2018-03-12 03:27:23 +01:00
|
|
|
ret = write_cache_as_tree(&oid, flags, prefix);
|
2008-01-11 07:49:35 +01:00
|
|
|
switch (ret) {
|
|
|
|
case 0:
|
2018-03-12 03:27:22 +01:00
|
|
|
printf("%s\n", oid_to_hex(&oid));
|
2008-01-11 07:49:35 +01:00
|
|
|
break;
|
|
|
|
case WRITE_TREE_UNREADABLE_INDEX:
|
|
|
|
die("%s: error reading the index", me);
|
|
|
|
break;
|
|
|
|
case WRITE_TREE_UNMERGED_INDEX:
|
2008-11-29 04:56:34 +01:00
|
|
|
die("%s: error building trees", me);
|
2008-01-11 07:49:35 +01:00
|
|
|
break;
|
|
|
|
case WRITE_TREE_PREFIX_ERROR:
|
|
|
|
die("%s: prefix %s not found", me, prefix);
|
|
|
|
break;
|
|
|
|
}
|
2006-06-13 22:21:42 +02:00
|
|
|
return ret;
|
|
|
|
}
|