2 #include "parse-options.h"
5 static char const * const pack_refs_usage
[] = {
6 N_("git pack-refs [<options>]"),
10 int cmd_pack_refs(int argc
, const char **argv
, const char *prefix
)
12 unsigned int flags
= PACK_REFS_PRUNE
;
13 struct option opts
[] = {
14 OPT_BIT(0, "all", &flags
, N_("pack everything"), PACK_REFS_ALL
),
15 OPT_BIT(0, "prune", &flags
, N_("prune loose refs (default)"), PACK_REFS_PRUNE
),
18 if (parse_options(argc
, argv
, prefix
, opts
, pack_refs_usage
, 0))
19 usage_with_options(pack_refs_usage
, opts
);
20 return refs_pack_refs(get_main_ref_store(), flags
);