https://github.com/git/git
Raw File
Tip revision: 66262451ec94d30ac4b80eb3123549cf7a788afd authored by Junio C Hamano on 30 July 2021, 23:14:07 UTC
Git 2.33-rc0
Tip revision: 6626245
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