]> git.ipfire.org Git - thirdparty/git.git/blame - rebase.h
t1405: check for_each_reflog_ent_reverse() more thoroughly
[thirdparty/git.git] / rebase.h
CommitLineData
88f8576e
BW
1#ifndef REBASE_H
2#define REBASE_H
3
4enum rebase_type {
5 REBASE_INVALID = -1,
6 REBASE_FALSE = 0,
7 REBASE_TRUE,
88f8576e
BW
8 REBASE_MERGES,
9 REBASE_INTERACTIVE
10};
11
12enum rebase_type rebase_parse_value(const char *value);
13
14#endif /* REBASE */