about summary refs log tree commit diff
path: root/third_party/git/rebase.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/rebase.h')
-rw-r--r--third_party/git/rebase.h15
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 0000000000..cc723d4748
--- /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 */