15 static const char reflog_expire_usage
[] =
16 "git-reflog (show|expire) [--verbose] [--dry-run] [--stale-fix] [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>...";
18 static unsigned long default_reflog_expire
;
19 static unsigned long default_reflog_expire_unreachable
;
21 struct cmd_reflog_expire_cb
{
26 unsigned long expire_total
;
27 unsigned long expire_unreachable
;
30 struct expire_reflog_cb
{
33 struct commit
*ref_commit
;
34 struct cmd_reflog_expire_cb
*cmd
;
37 struct collected_reflog
{
38 unsigned char sha1
[20];
39 char reflog
[FLEX_ARRAY
];
41 struct collect_reflog_cb
{
42 struct collected_reflog
**e
;
47 #define INCOMPLETE (1u<<10)
48 #define STUDYING (1u<<11)
50 static int tree_is_complete(const unsigned char *sha1
)
52 struct tree_desc desc
;
53 struct name_entry entry
;
57 tree
= lookup_tree(sha1
);
60 if (tree
->object
.flags
& SEEN
)
62 if (tree
->object
.flags
& INCOMPLETE
)
66 enum object_type type
;
68 void *data
= read_sha1_file(sha1
, &type
, &size
);
70 tree
->object
.flags
|= INCOMPLETE
;
76 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
78 while (tree_entry(&desc
, &entry
)) {
79 if (!has_sha1_file(entry
.sha1
) ||
80 (S_ISDIR(entry
.mode
) && !tree_is_complete(entry
.sha1
))) {
81 tree
->object
.flags
|= INCOMPLETE
;
89 tree
->object
.flags
|= SEEN
;
93 static int commit_is_complete(struct commit
*commit
)
95 struct object_array study
;
96 struct object_array found
;
97 int is_incomplete
= 0;
101 if (commit
->object
.flags
& SEEN
)
103 if (commit
->object
.flags
& INCOMPLETE
)
106 * Find all commits that are reachable and are not marked as
107 * SEEN. Then make sure the trees and blobs contained are
108 * complete. After that, mark these commits also as SEEN.
109 * If some of the objects that are needed to complete this
110 * commit are missing, mark this commit as INCOMPLETE.
112 memset(&study
, 0, sizeof(study
));
113 memset(&found
, 0, sizeof(found
));
114 add_object_array(&commit
->object
, NULL
, &study
);
115 add_object_array(&commit
->object
, NULL
, &found
);
116 commit
->object
.flags
|= STUDYING
;
119 struct commit_list
*parent
;
121 c
= (struct commit
*)study
.objects
[--study
.nr
].item
;
122 if (!c
->object
.parsed
&& !parse_object(c
->object
.sha1
))
123 c
->object
.flags
|= INCOMPLETE
;
125 if (c
->object
.flags
& INCOMPLETE
) {
129 else if (c
->object
.flags
& SEEN
)
131 for (parent
= c
->parents
; parent
; parent
= parent
->next
) {
132 struct commit
*p
= parent
->item
;
133 if (p
->object
.flags
& STUDYING
)
135 p
->object
.flags
|= STUDYING
;
136 add_object_array(&p
->object
, NULL
, &study
);
137 add_object_array(&p
->object
, NULL
, &found
);
140 if (!is_incomplete
) {
142 * make sure all commits in "found" array have all the
145 for (i
= 0; i
< found
.nr
; i
++) {
147 (struct commit
*)found
.objects
[i
].item
;
148 if (!tree_is_complete(c
->tree
->object
.sha1
)) {
150 c
->object
.flags
|= INCOMPLETE
;
153 if (!is_incomplete
) {
154 /* mark all found commits as complete, iow SEEN */
155 for (i
= 0; i
< found
.nr
; i
++)
156 found
.objects
[i
].item
->flags
|= SEEN
;
159 /* clear flags from the objects we traversed */
160 for (i
= 0; i
< found
.nr
; i
++)
161 found
.objects
[i
].item
->flags
&= ~STUDYING
;
163 commit
->object
.flags
|= INCOMPLETE
;
166 * If we come here, we have (1) traversed the ancestry chain
167 * from the "commit" until we reach SEEN commits (which are
168 * known to be complete), and (2) made sure that the commits
169 * encountered during the above traversal refer to trees that
170 * are complete. Which means that we know *all* the commits
171 * we have seen during this process are complete.
173 for (i
= 0; i
< found
.nr
; i
++)
174 found
.objects
[i
].item
->flags
|= SEEN
;
176 /* free object arrays */
179 return !is_incomplete
;
182 static int keep_entry(struct commit
**it
, unsigned char *sha1
)
184 struct commit
*commit
;
186 if (is_null_sha1(sha1
))
188 commit
= lookup_commit_reference_gently(sha1
, 1);
193 * Make sure everything in this commit exists.
195 * We have walked all the objects reachable from the refs
196 * and cache earlier. The commits reachable by this commit
197 * must meet SEEN commits -- and then we should mark them as
200 if (!commit_is_complete(commit
))
206 static int expire_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
207 const char *email
, unsigned long timestamp
, int tz
,
208 const char *message
, void *cb_data
)
210 struct expire_reflog_cb
*cb
= cb_data
;
211 struct commit
*old
, *new;
213 if (timestamp
< cb
->cmd
->expire_total
)
217 if (cb
->cmd
->stalefix
&&
218 (!keep_entry(&old
, osha1
) || !keep_entry(&new, nsha1
)))
221 if (timestamp
< cb
->cmd
->expire_unreachable
) {
224 if (!old
&& !is_null_sha1(osha1
))
225 old
= lookup_commit_reference_gently(osha1
, 1);
226 if (!new && !is_null_sha1(nsha1
))
227 new = lookup_commit_reference_gently(nsha1
, 1);
228 if ((old
&& !in_merge_bases(old
, &cb
->ref_commit
, 1)) ||
229 (new && !in_merge_bases(new, &cb
->ref_commit
, 1)))
234 char sign
= (tz
< 0) ? '-' : '+';
235 int zone
= (tz
< 0) ? (-tz
) : tz
;
236 fprintf(cb
->newlog
, "%s %s %s %lu %c%04d\t%s",
237 sha1_to_hex(osha1
), sha1_to_hex(nsha1
),
238 email
, timestamp
, sign
, zone
,
241 if (cb
->cmd
->verbose
)
242 printf("keep %s", message
);
245 if (!cb
->newlog
|| cb
->cmd
->verbose
)
246 printf("%sprune %s", cb
->newlog
? "" : "would ", message
);
250 static int expire_reflog(const char *ref
, const unsigned char *sha1
, int unused
, void *cb_data
)
252 struct cmd_reflog_expire_cb
*cmd
= cb_data
;
253 struct expire_reflog_cb cb
;
254 struct ref_lock
*lock
;
255 char *log_file
, *newlog_path
= NULL
;
258 memset(&cb
, 0, sizeof(cb
));
259 /* we take the lock for the ref itself to prevent it from
262 lock
= lock_any_ref_for_update(ref
, sha1
, 0);
264 return error("cannot lock ref '%s'", ref
);
265 log_file
= xstrdup(git_path("logs/%s", ref
));
266 if (!file_exists(log_file
))
269 newlog_path
= xstrdup(git_path("logs/%s.lock", ref
));
270 cb
.newlog
= fopen(newlog_path
, "w");
273 cb
.ref_commit
= lookup_commit_reference_gently(sha1
, 1);
276 for_each_reflog_ent(ref
, expire_reflog_ent
, &cb
);
279 if (fclose(cb
.newlog
))
280 status
|= error("%s: %s", strerror(errno
),
282 if (rename(newlog_path
, log_file
)) {
283 status
|= error("cannot rename %s to %s",
284 newlog_path
, log_file
);
294 static int collect_reflog(const char *ref
, const unsigned char *sha1
, int unused
, void *cb_data
)
296 struct collected_reflog
*e
;
297 struct collect_reflog_cb
*cb
= cb_data
;
298 size_t namelen
= strlen(ref
);
300 e
= xmalloc(sizeof(*e
) + namelen
+ 1);
301 hashcpy(e
->sha1
, sha1
);
302 memcpy(e
->reflog
, ref
, namelen
+ 1);
303 ALLOC_GROW(cb
->e
, cb
->nr
+ 1, cb
->alloc
);
308 static int reflog_expire_config(const char *var
, const char *value
)
310 if (!strcmp(var
, "gc.reflogexpire")) {
312 config_error_nonbool(var
);
313 default_reflog_expire
= approxidate(value
);
316 if (!strcmp(var
, "gc.reflogexpireunreachable")) {
318 config_error_nonbool(var
);
319 default_reflog_expire_unreachable
= approxidate(value
);
322 return git_default_config(var
, value
);
325 static int cmd_reflog_expire(int argc
, const char **argv
, const char *prefix
)
327 struct cmd_reflog_expire_cb cb
;
328 unsigned long now
= time(NULL
);
329 int i
, status
, do_all
;
331 git_config(reflog_expire_config
);
333 save_commit_buffer
= 0;
335 memset(&cb
, 0, sizeof(cb
));
337 if (!default_reflog_expire_unreachable
)
338 default_reflog_expire_unreachable
= now
- 30 * 24 * 3600;
339 if (!default_reflog_expire
)
340 default_reflog_expire
= now
- 90 * 24 * 3600;
341 cb
.expire_total
= default_reflog_expire
;
342 cb
.expire_unreachable
= default_reflog_expire_unreachable
;
345 * We can trust the commits and objects reachable from refs
346 * even in older repository. We cannot trust what's reachable
347 * from reflog if the repository was pruned with older git.
350 for (i
= 1; i
< argc
; i
++) {
351 const char *arg
= argv
[i
];
352 if (!strcmp(arg
, "--dry-run") || !strcmp(arg
, "-n"))
354 else if (!prefixcmp(arg
, "--expire="))
355 cb
.expire_total
= approxidate(arg
+ 9);
356 else if (!prefixcmp(arg
, "--expire-unreachable="))
357 cb
.expire_unreachable
= approxidate(arg
+ 21);
358 else if (!strcmp(arg
, "--stale-fix"))
360 else if (!strcmp(arg
, "--all"))
362 else if (!strcmp(arg
, "--verbose"))
364 else if (!strcmp(arg
, "--")) {
368 else if (arg
[0] == '-')
369 usage(reflog_expire_usage
);
374 init_revisions(&cb
.revs
, prefix
);
376 printf("Marking reachable objects...");
377 mark_reachable_objects(&cb
.revs
, 0);
383 struct collect_reflog_cb collected
;
386 memset(&collected
, 0, sizeof(collected
));
387 for_each_reflog(collect_reflog
, &collected
);
388 for (i
= 0; i
< collected
.nr
; i
++) {
389 struct collected_reflog
*e
= collected
.e
[i
];
390 status
|= expire_reflog(e
->reflog
, e
->sha1
, 0, &cb
);
397 const char *ref
= argv
[i
++];
398 unsigned char sha1
[20];
399 if (!resolve_ref(ref
, sha1
, 1, NULL
)) {
400 status
|= error("%s points nowhere!", ref
);
403 status
|= expire_reflog(ref
, sha1
, 0, &cb
);
412 static const char reflog_usage
[] =
413 "git-reflog (expire | ...)";
415 int cmd_reflog(int argc
, const char **argv
, const char *prefix
)
417 /* With no command, we default to showing it. */
418 if (argc
< 2 || *argv
[1] == '-')
419 return cmd_log_reflog(argc
, argv
, prefix
);
421 if (!strcmp(argv
[1], "show"))
422 return cmd_log_reflog(argc
- 1, argv
+ 1, prefix
);
424 if (!strcmp(argv
[1], "expire"))
425 return cmd_reflog_expire(argc
- 1, argv
+ 1, prefix
);
427 /* Not a recognized reflog command..*/