Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rebase.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc723d4748952e4cf5e83b0b8835d2fd576dcf71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 */