Revision c2b3f2b3cdbf5ad9feb978dd367d77561a1271f7 authored by Junio C Hamano on 02 July 2024, 16:04:10 UTC, committed by Junio C Hamano on 02 July 2024, 16:27:59 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2c2ddfb
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