submodule: allow erroneous values for the fetchRecurseSubmodules option
We should not die when reading the submodule config cache since the user might not be able to get out of that situation when the configuration is part of the history. We should handle this condition later when the value is about to be used. Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net> Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
851e18c385
commit
027771fcb1
15
submodule.c
15
submodule.c
@ -288,21 +288,6 @@ static void print_submodule_summary(struct rev_info *rev, FILE *f,
|
||||
strbuf_release(&sb);
|
||||
}
|
||||
|
||||
int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg)
|
||||
{
|
||||
switch (git_config_maybe_bool(opt, arg)) {
|
||||
case 1:
|
||||
return RECURSE_SUBMODULES_ON;
|
||||
case 0:
|
||||
return RECURSE_SUBMODULES_OFF;
|
||||
default:
|
||||
if (!strcmp(arg, "on-demand"))
|
||||
return RECURSE_SUBMODULES_ON_DEMAND;
|
||||
/* TODO: remove the die for history parsing here */
|
||||
die("bad %s argument: %s", opt, arg);
|
||||
}
|
||||
}
|
||||
|
||||
void show_submodule_summary(FILE *f, const char *path,
|
||||
const char *line_prefix,
|
||||
unsigned char one[20], unsigned char two[20],
|
||||
|
||||
Reference in New Issue
Block a user