mirror of
https://github.com/git/git
synced 2024-11-05 04:53:18 +00:00
52f1e82178
In preparation for `git-rebase--preserve-merges.sh` entering its after life, we remove this (deprecated) option that would still rely on it. To help users transition who still did not receive the memo about the deprecation, we offer a helpful error message instead of throwing our hands in the air and saying that we don't know that option, never heard of it. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Reviewed-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
14 lines
226 B
C
14 lines
226 B
C
#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 */
|