7 #include "parse-options.h"
9 #include "object-store.h"
11 static const char * const prune_usage
[] = {
12 N_("git prune [-n] [-v] [--progress] [--expire <time>] [--] [<head>...]"),
17 static timestamp_t expire
;
18 static int show_progress
= -1;
20 static int prune_tmp_file(const char *fullpath
)
23 if (lstat(fullpath
, &st
))
24 return error("Could not stat '%s'", fullpath
);
25 if (st
.st_mtime
> expire
)
27 if (show_only
|| verbose
)
28 printf("Removing stale temporary file %s\n", fullpath
);
30 unlink_or_warn(fullpath
);
34 static int prune_object(const struct object_id
*oid
, const char *fullpath
,
40 * Do we know about this object?
41 * It must have been reachable
43 if (lookup_object(the_repository
, oid
->hash
))
46 if (lstat(fullpath
, &st
)) {
47 /* report errors, but do not stop pruning */
48 error("Could not stat '%s'", fullpath
);
51 if (st
.st_mtime
> expire
)
53 if (show_only
|| verbose
) {
54 enum object_type type
= oid_object_info(the_repository
, oid
,
56 printf("%s %s\n", oid_to_hex(oid
),
57 (type
> 0) ? type_name(type
) : "unknown");
60 unlink_or_warn(fullpath
);
64 static int prune_cruft(const char *basename
, const char *path
, void *data
)
66 if (starts_with(basename
, "tmp_obj_"))
69 fprintf(stderr
, "bad sha1 file: %s\n", path
);
73 static int prune_subdir(unsigned int nr
, const char *path
, void *data
)
81 * Write errors (particularly out of space) can result in
82 * failed temporary packs (and more rarely indexes and other
83 * files beginning with "tmp_") accumulating in the object
84 * and the pack directories.
86 static void remove_temporary_files(const char *path
)
93 fprintf(stderr
, "Unable to open directory %s\n", path
);
96 while ((de
= readdir(dir
)) != NULL
)
97 if (starts_with(de
->d_name
, "tmp_"))
98 prune_tmp_file(mkpath("%s/%s", path
, de
->d_name
));
102 int cmd_prune(int argc
, const char **argv
, const char *prefix
)
104 struct rev_info revs
;
105 struct progress
*progress
= NULL
;
106 int exclude_promisor_objects
= 0;
107 const struct option options
[] = {
108 OPT__DRY_RUN(&show_only
, N_("do not remove, show only")),
109 OPT__VERBOSE(&verbose
, N_("report pruned objects")),
110 OPT_BOOL(0, "progress", &show_progress
, N_("show progress")),
111 OPT_EXPIRY_DATE(0, "expire", &expire
,
112 N_("expire objects older than <time>")),
113 OPT_BOOL(0, "exclude-promisor-objects", &exclude_promisor_objects
,
114 N_("limit traversal to objects outside promisor packfiles")),
120 save_commit_buffer
= 0;
121 read_replace_refs
= 0;
123 repo_init_revisions(the_repository
, &revs
, prefix
);
125 argc
= parse_options(argc
, argv
, prefix
, options
, prune_usage
, 0);
127 if (repository_format_precious_objects
)
128 die(_("cannot prune in a precious-objects repo"));
131 struct object_id oid
;
132 const char *name
= *argv
++;
134 if (!get_oid(name
, &oid
)) {
135 struct object
*object
= parse_object_or_die(&oid
,
137 add_pending_object(&revs
, object
, "");
140 die("unrecognized argument: %s", name
);
143 if (show_progress
== -1)
144 show_progress
= isatty(2);
146 progress
= start_delayed_progress(_("Checking connectivity"), 0);
147 if (exclude_promisor_objects
) {
148 fetch_if_missing
= 0;
149 revs
.exclude_promisor_objects
= 1;
152 mark_reachable_objects(&revs
, 1, expire
, progress
);
153 stop_progress(&progress
);
154 for_each_loose_file_in_objdir(get_object_directory(), prune_object
,
155 prune_cruft
, prune_subdir
, NULL
);
157 prune_packed_objects(show_only
? PRUNE_PACKED_DRY_RUN
: 0);
158 remove_temporary_files(get_object_directory());
159 s
= mkpathdup("%s/pack", get_object_directory());
160 remove_temporary_files(s
);
163 if (is_repository_shallow(the_repository
))
164 prune_shallow(show_only
? PRUNE_SHOW_ONLY
: 0);