7 #include "parse-options.h"
9 #include "prune-packed.h"
10 #include "object-store.h"
13 static const char * const prune_usage
[] = {
14 N_("git prune [-n] [-v] [--progress] [--expire <time>] [--] [<head>...]"),
19 static timestamp_t expire
;
20 static int show_progress
= -1;
22 static int prune_tmp_file(const char *fullpath
)
25 if (lstat(fullpath
, &st
))
26 return error("Could not stat '%s'", fullpath
);
27 if (st
.st_mtime
> expire
)
29 if (show_only
|| verbose
)
30 printf("Removing stale temporary file %s\n", fullpath
);
32 unlink_or_warn(fullpath
);
36 static void perform_reachability_traversal(struct rev_info
*revs
)
38 static int initialized
;
39 struct progress
*progress
= NULL
;
45 progress
= start_delayed_progress(_("Checking connectivity"), 0);
46 mark_reachable_objects(revs
, 1, expire
, progress
);
47 stop_progress(&progress
);
51 static int is_object_reachable(const struct object_id
*oid
,
52 struct rev_info
*revs
)
56 perform_reachability_traversal(revs
);
58 obj
= lookup_object(the_repository
, oid
);
59 return obj
&& (obj
->flags
& SEEN
);
62 static int prune_object(const struct object_id
*oid
, const char *fullpath
,
65 struct rev_info
*revs
= data
;
68 if (is_object_reachable(oid
, revs
))
71 if (lstat(fullpath
, &st
)) {
72 /* report errors, but do not stop pruning */
73 error("Could not stat '%s'", fullpath
);
76 if (st
.st_mtime
> expire
)
78 if (show_only
|| verbose
) {
79 enum object_type type
= oid_object_info(the_repository
, oid
,
81 printf("%s %s\n", oid_to_hex(oid
),
82 (type
> 0) ? type_name(type
) : "unknown");
85 unlink_or_warn(fullpath
);
89 static int prune_cruft(const char *basename
, const char *path
, void *data
)
91 if (starts_with(basename
, "tmp_obj_"))
94 fprintf(stderr
, "bad sha1 file: %s\n", path
);
98 static int prune_subdir(unsigned int nr
, const char *path
, void *data
)
106 * Write errors (particularly out of space) can result in
107 * failed temporary packs (and more rarely indexes and other
108 * files beginning with "tmp_") accumulating in the object
109 * and the pack directories.
111 static void remove_temporary_files(const char *path
)
118 fprintf(stderr
, "Unable to open directory %s\n", path
);
121 while ((de
= readdir(dir
)) != NULL
)
122 if (starts_with(de
->d_name
, "tmp_"))
123 prune_tmp_file(mkpath("%s/%s", path
, de
->d_name
));
127 int cmd_prune(int argc
, const char **argv
, const char *prefix
)
129 struct rev_info revs
;
130 int exclude_promisor_objects
= 0;
131 const struct option options
[] = {
132 OPT__DRY_RUN(&show_only
, N_("do not remove, show only")),
133 OPT__VERBOSE(&verbose
, N_("report pruned objects")),
134 OPT_BOOL(0, "progress", &show_progress
, N_("show progress")),
135 OPT_EXPIRY_DATE(0, "expire", &expire
,
136 N_("expire objects older than <time>")),
137 OPT_BOOL(0, "exclude-promisor-objects", &exclude_promisor_objects
,
138 N_("limit traversal to objects outside promisor packfiles")),
144 save_commit_buffer
= 0;
145 read_replace_refs
= 0;
147 repo_init_revisions(the_repository
, &revs
, prefix
);
149 argc
= parse_options(argc
, argv
, prefix
, options
, prune_usage
, 0);
151 if (repository_format_precious_objects
)
152 die(_("cannot prune in a precious-objects repo"));
155 struct object_id oid
;
156 const char *name
= *argv
++;
158 if (!get_oid(name
, &oid
)) {
159 struct object
*object
= parse_object_or_die(&oid
,
161 add_pending_object(&revs
, object
, "");
164 die("unrecognized argument: %s", name
);
167 if (show_progress
== -1)
168 show_progress
= isatty(2);
169 if (exclude_promisor_objects
) {
170 fetch_if_missing
= 0;
171 revs
.exclude_promisor_objects
= 1;
174 for_each_loose_file_in_objdir(get_object_directory(), prune_object
,
175 prune_cruft
, prune_subdir
, &revs
);
177 prune_packed_objects(show_only
? PRUNE_PACKED_DRY_RUN
: 0);
178 remove_temporary_files(get_object_directory());
179 s
= mkpathdup("%s/pack", get_object_directory());
180 remove_temporary_files(s
);
183 if (is_repository_shallow(the_repository
)) {
184 perform_reachability_traversal(&revs
);
185 prune_shallow(show_only
? PRUNE_SHOW_ONLY
: 0);