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