Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 3ddac3d691c3633cd4d9a74c07e3b2301f546f77 authored by Junio C Hamano on 17 July 2020, 01:02:52 UTC
Git 2.28-rc1
Tip revision: 3ddac3d
rebase.h
#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 */
back to top