On Wed, Jul 12, 2017 at 11:09 AM, Jonathan Nieder <jrnieder@xxxxxxxxx> wrote: > Hi, > > Jeff King wrote: > >> I didn't follow the rest of the "struct repository" series closely, but >> I don't feel like we ever reached a resolution on how config would be >> handled. I notice that the in-process "ls-files" behaves differently >> than the old one when config differs between the submodule and the >> parent repository. As we convert more commands (that use more config) >> this will become more likely to be noticed by somebody. >> >> Do we have a plan for dealing with this? Is our solution just "recursed >> operations always respect the parent config, deal with it"? > > For settings like branch.<name>.remote, I don't think anyone would > disagree that the right thing to do is to use the per-repository > config of the submodule. The repository object is already able to > handle per-repository config, so this just involves callers being > careful not to cache values locally in a way that conflates > repositories. It should be pretty straightforward (for commands like > "git fetch --recurse-submodules", for example). > > For settings like grep.patternType, on the other hand, it would be > very strange for the behavior to change when grep crosses the > submodule boundary. That is because this option relates to the input given. Other options relate to the items to be processed, such as grep.color.* which I would not find strange if they were respected in the submodule. > So I think using the parent project config is the > right thing to do and the old behavior was simply wrong. In other > words, I don't think this is so much a case of "deal with it" as > "sorry we got the behavior so wrong before --- we've finally fixed it > now". In an ideal world we should pay partial attention to the config in the submodule, and for each config key we'd have to determine if it rather relates to the general runtime (grep.threads), the command line options (grep.patternType) or to the specific content inside the repo (coloring, whether we show the line number). For now and in reality we can ignore the content specific settings and claim that any setting here is related to runtime and command line options, both of which a user may expect the superproject to win in case of differing configurations. Thanks, Stefan