On Tue, Oct 4, 2016 at 11:00 AM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > Stefan Beller <sbeller@xxxxxxxxxx> writes: > >> +static void preset_submodule_default(void) >> +{ >> + if (file_exists(".gitmodules")) > > Don't we need to see if we are in a bare repository? See discussion with Jeff; instead of checking the file, we rather want to check if $GIT_DIR/modules/ is populated, as that is version agnostic ("Was a submodule initialized and fetched at any time in the life time of this repository?"), as well as bare/non-bare agnostic. > >> + recurse_submodules = RECURSE_SUBMODULES_CHECK; >> + else >> + recurse_submodules = RECURSE_SUBMODULES_DEFAULT; > > Hmph, why "_DEFAULT" not "_OFF"? You answered yourself below, and that was indeed my thought. I was also wondering whether to remove the else, but then I thought that we'd rather do not want to rely on compiled-in at all, and have one init function which sets out the new world order.