]> git.ipfire.org Git - thirdparty/git.git/blame - bisect.h
is_ntfs_dotgit(): only verify the leading segment
[thirdparty/git.git] / bisect.h
CommitLineData
a2ad79ce
CC
1#ifndef BISECT_H
2#define BISECT_H
3
4extern struct commit_list *find_bisection(struct commit_list *list,
5 int *reaches, int *all,
6 int find_all);
7
95188648
CC
8extern struct commit_list *filter_skipped(struct commit_list *list,
9 struct commit_list **tried,
9af3589e
CC
10 int show_all,
11 int *count,
12 int *skipped_first);
95188648 13
37c4c38d 14#define BISECT_SHOW_ALL (1<<0)
98993722 15#define REV_LIST_QUIET (1<<1)
37c4c38d 16
d797257e
CC
17struct rev_list_info {
18 struct rev_info *revs;
98993722 19 int flags;
d797257e
CC
20 int show_timestamp;
21 int hdr_termination;
22 const char *header_prefix;
23};
24
fee92fc1 25extern int bisect_next_all(const char *prefix, int no_checkout);
1bf072e3 26
1c876546
CC
27extern int estimate_bisect_steps(int all);
28
cb46d630
AD
29extern void read_bisect_terms(const char **bad, const char **good);
30
a2ad79ce 31#endif