diff options
Diffstat (limited to 'third_party/git/rebase.h')
-rw-r--r-- | third_party/git/rebase.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/git/rebase.h b/third_party/git/rebase.h new file mode 100644 index 000000000000..cc723d474895 --- /dev/null +++ b/third_party/git/rebase.h @@ -0,0 +1,15 @@ +#ifndef REBASE_H +#define REBASE_H + +enum rebase_type { + REBASE_INVALID = -1, + REBASE_FALSE = 0, + REBASE_TRUE, + REBASE_PRESERVE, + REBASE_MERGES, + REBASE_INTERACTIVE +}; + +enum rebase_type rebase_parse_value(const char *value); + +#endif /* REBASE */ |