2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
10 #include "cache-tree.h"
11 #include "parse-options.h"
13 static const char * const write_tree_usage
[] = {
14 N_("git write-tree [--missing-ok] [--prefix=<prefix>/]"),
18 int cmd_write_tree(int argc
, const char **argv
, const char *unused_prefix
)
21 const char *prefix
= NULL
;
23 const char *me
= "git-write-tree";
24 struct option write_tree_options
[] = {
25 OPT_BIT(0, "missing-ok", &flags
, N_("allow missing objects"),
26 WRITE_TREE_MISSING_OK
),
27 OPT_STRING(0, "prefix", &prefix
, N_("<prefix>/"),
28 N_("write tree object for a subdirectory <prefix>")),
29 { OPTION_BIT
, 0, "ignore-cache-tree", &flags
, NULL
,
30 N_("only useful for debugging"),
31 PARSE_OPT_HIDDEN
| PARSE_OPT_NOARG
, NULL
,
32 WRITE_TREE_IGNORE_CACHE_TREE
},
36 git_config(git_default_config
, NULL
);
37 argc
= parse_options(argc
, argv
, unused_prefix
, write_tree_options
,
40 ret
= write_cache_as_tree(&oid
, flags
, prefix
);
43 printf("%s\n", oid_to_hex(&oid
));
45 case WRITE_TREE_UNREADABLE_INDEX
:
46 die("%s: error reading the index", me
);
48 case WRITE_TREE_UNMERGED_INDEX
:
49 die("%s: error building trees", me
);
51 case WRITE_TREE_PREFIX_ERROR
:
52 die("%s: prefix %s not found", me
, prefix
);