projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
get_default_branch_name(): prepare for showing some advice
[git]
/
rebase.h
1
#ifndef REBASE_H
2
#define REBASE_H
3
4
enum rebase_type {
5
REBASE_INVALID = -1,
6
REBASE_FALSE = 0,
7
REBASE_TRUE,
8
REBASE_PRESERVE,
9
REBASE_MERGES,
10
REBASE_INTERACTIVE
11
};
12
13
enum rebase_type rebase_parse_value(const char *value);
14
15
#endif /* REBASE */