Revision df93e407f0618e4a8265ac619dc7f4c7005155bc authored by Johannes Schindelin on 29 March 2024, 10:45:01 UTC, committed by Johannes Schindelin on 17 April 2024, 20:30:10 UTC
We will need to call this function from `hook.c` to be able to prevent
hooks from running that were written as part of a `clone` but did not
originate from the template directory.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 48c171d
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