repo.or.cz
/
git
/
debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
compat: let git_mmap use malloc(3) directly
[git/debian.git]
/
rebase.h
blob
cc723d4748952e4cf5e83b0b8835d2fd576dcf71
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 */