Revision 37ed7bf0f13d204ccb6b8e7e2fbcf7b3bf13e25c authored by Junio C Hamano on 13 December 2022, 12:24:14 UTC, committed by Junio C Hamano on 13 December 2022, 12:24:14 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent fea9f60
Raw File
rebase.h
#ifndef REBASE_H
#define REBASE_H

enum rebase_type {
	REBASE_INVALID = -1,
	REBASE_FALSE = 0,
	REBASE_TRUE,
	REBASE_MERGES,
	REBASE_INTERACTIVE
};

enum rebase_type rebase_parse_value(const char *value);

#endif /* REBASE */
back to top