2006-08-02 21:52:00 +00:00
|
|
|
#include "builtin.h"
|
2009-07-08 05:15:41 +00:00
|
|
|
#include "parse-options.h"
|
2020-03-24 01:07:52 +00:00
|
|
|
#include "prune-packed.h"
|
2005-07-03 21:27:34 +00:00
|
|
|
|
2009-07-08 05:15:41 +00:00
|
|
|
static const char * const prune_packed_usage[] = {
|
2015-01-13 07:44:47 +00:00
|
|
|
N_("git prune-packed [-n | --dry-run] [-q | --quiet]"),
|
2009-07-08 05:15:41 +00:00
|
|
|
NULL
|
|
|
|
};
|
2005-08-20 04:38:36 +00:00
|
|
|
|
2006-08-02 21:52:00 +00:00
|
|
|
int cmd_prune_packed(int argc, const char **argv, const char *prefix)
|
2005-07-03 21:27:34 +00:00
|
|
|
{
|
2013-05-27 11:18:47 +00:00
|
|
|
int opts = isatty(2) ? PRUNE_PACKED_VERBOSE : 0;
|
2009-07-08 05:15:41 +00:00
|
|
|
const struct option prune_packed_options[] = {
|
2013-05-27 11:18:47 +00:00
|
|
|
OPT_BIT('n', "dry-run", &opts, N_("dry run"),
|
|
|
|
PRUNE_PACKED_DRY_RUN),
|
|
|
|
OPT_NEGBIT('q', "quiet", &opts, N_("be quiet"),
|
|
|
|
PRUNE_PACKED_VERBOSE),
|
2009-07-08 05:15:41 +00:00
|
|
|
OPT_END()
|
|
|
|
};
|
2005-07-03 21:27:34 +00:00
|
|
|
|
2009-07-08 05:15:41 +00:00
|
|
|
argc = parse_options(argc, argv, prefix, prune_packed_options,
|
|
|
|
prune_packed_usage, 0);
|
2005-07-03 21:27:34 +00:00
|
|
|
|
2019-02-11 17:23:40 +00:00
|
|
|
if (argc > 0)
|
|
|
|
usage_msg_opt(_("too many arguments"),
|
|
|
|
prune_packed_usage,
|
|
|
|
prune_packed_options);
|
|
|
|
|
2007-01-12 23:00:13 +00:00
|
|
|
prune_packed_objects(opts);
|
2005-07-03 21:27:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|