Revision 9f443f553171032d5ce004ae326ecb116a6ef4e5 authored by Jean-Noël Avila on 08 October 2020, 20:23:57 UTC, committed by Junio C Hamano on 08 October 2020, 21:01:19 UTC
In command line options, variables are entered between < and >

Signed-off-by: Jean-Noël Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 89eed6f
Raw File
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