Revision 21bb3851ee3c6fe945ed17c10b79dc153418fcdf authored by Junio C Hamano on 13 June 2022, 22:53:44 UTC, committed by Junio C Hamano on 13 June 2022, 22:53:44 UTC
Doc update.

* gc/document-config-worktree-scope:
  config: document and test the 'worktree' scope
2 parent s da48270 + db7961e
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