Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 898f80736c75878acc02dc55672317fcc0e0a5a6 authored by Junio C Hamano on 29 October 2020, 21:24:09 UTC
Git 2.29.2
Tip revision: 898f807
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