]> git.ipfire.org Git - thirdparty/git.git/blob - builtin-pack-refs.c
Fix some printf format warnings
[thirdparty/git.git] / builtin-pack-refs.c
1 #include "cache.h"
2 #include "parse-options.h"
3 #include "pack-refs.h"
4
5 static char const * const pack_refs_usage[] = {
6 "git pack-refs [options]",
7 NULL
8 };
9
10 int cmd_pack_refs(int argc, const char **argv, const char *prefix)
11 {
12 unsigned int flags = PACK_REFS_PRUNE;
13 struct option opts[] = {
14 OPT_BIT(0, "all", &flags, "pack everything", PACK_REFS_ALL),
15 OPT_BIT(0, "prune", &flags, "prune loose refs (default)", PACK_REFS_PRUNE),
16 OPT_END(),
17 };
18 if (parse_options(argc, argv, prefix, opts, pack_refs_usage, 0))
19 usage_with_options(pack_refs_usage, opts);
20 return pack_refs(flags);
21 }