4 #include "parse-options.h"
6 #include "object-store.h"
8 static const char * const prune_packed_usage
[] = {
9 N_("git prune-packed [-n | --dry-run] [-q | --quiet]"),
13 static struct progress
*progress
;
15 static int prune_subdir(unsigned int nr
, const char *path
, void *data
)
18 display_progress(progress
, nr
+ 1);
19 if (!(*opts
& PRUNE_PACKED_DRY_RUN
))
24 static int prune_object(const struct object_id
*oid
, const char *path
,
29 if (!has_object_pack(oid
))
32 if (*opts
& PRUNE_PACKED_DRY_RUN
)
33 printf("rm -f %s\n", path
);
39 void prune_packed_objects(int opts
)
41 if (opts
& PRUNE_PACKED_VERBOSE
)
42 progress
= start_delayed_progress(_("Removing duplicate objects"), 256);
44 for_each_loose_file_in_objdir(get_object_directory(),
45 prune_object
, NULL
, prune_subdir
, &opts
);
47 /* Ensure we show 100% before finishing progress */
48 display_progress(progress
, 256);
49 stop_progress(&progress
);
52 int cmd_prune_packed(int argc
, const char **argv
, const char *prefix
)
54 int opts
= isatty(2) ? PRUNE_PACKED_VERBOSE
: 0;
55 const struct option prune_packed_options
[] = {
56 OPT_BIT('n', "dry-run", &opts
, N_("dry run"),
57 PRUNE_PACKED_DRY_RUN
),
58 OPT_NEGBIT('q', "quiet", &opts
, N_("be quiet"),
59 PRUNE_PACKED_VERBOSE
),
63 argc
= parse_options(argc
, argv
, prefix
, prune_packed_options
,
64 prune_packed_usage
, 0);
67 usage_msg_opt(_("too many arguments"),
69 prune_packed_options
);
71 prune_packed_objects(opts
);