Merge branch 'cb/test-use-ere-for-alternation'
[git/debian.git] / rebase.h
blobcc723d4748952e4cf5e83b0b8835d2fd576dcf71
1 #ifndef REBASE_H
2 #define REBASE_H
4 enum rebase_type {
5 REBASE_INVALID = -1,
6 REBASE_FALSE = 0,
7 REBASE_TRUE,
8 REBASE_PRESERVE,
9 REBASE_MERGES,
10 REBASE_INTERACTIVE
13 enum rebase_type rebase_parse_value(const char *value);
15 #endif /* REBASE */