diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-08 15:56:51 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-08 15:56:51 -0800 |
commit | c326246accf36bc070b326773df2b9ec1c336037 (patch) | |
tree | 486ee3d5c8115c78cc50cccbda5a55ed372231ab /reachable.h | |
parent | short i/o: fix config updates to use write_in_full (diff) | |
parent | reflog --fix-stale: do not check the same trees and commits repeatedly. (diff) | |
download | tgif-c326246accf36bc070b326773df2b9ec1c336037.tar.xz |
Merge branch 'jc/reflog'
* jc/reflog:
reflog --fix-stale: do not check the same trees and commits repeatedly.
reflog expire --fix-stale
Move traversal of reachable objects into a separate library.
builtin-prune: separate ref walking from reflog walking.
builtin-prune: make file-scope static struct to an argument.
Diffstat (limited to 'reachable.h')
-rw-r--r-- | reachable.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/reachable.h b/reachable.h new file mode 100644 index 0000000000..40751810b6 --- /dev/null +++ b/reachable.h @@ -0,0 +1,6 @@ +#ifndef REACHEABLE_H +#define REACHEABLE_H + +extern void mark_reachable_objects(struct rev_info *revs, int mark_reflog); + +#endif |