https://github.com/git/git
Raw File
Tip revision: ecaa3db17183b4a3895ccd0c0c1af01d0e6fed45 authored by Johannes Schindelin on 11 March 2023, 20:18:16 UTC
Git 2.36.6
Tip revision: ecaa3db
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