On Tue, Oct 23 2018, Ben Peart wrote: > On 10/23/2018 5:13 AM, Ævar Arnfjörð Bjarmason wrote: >> >> On Wed, Oct 17 2018, Jeff King wrote: >> >>> On Wed, Oct 17, 2018 at 02:19:59PM -0400, Eric Sunshine wrote: >>> >>>> On Wed, Oct 17, 2018 at 12:40 PM Ben Peart <peartben@xxxxxxxxx> wrote: >>>>> Add a reset.quietDefault config setting that sets the default value of the >>>>> --quiet flag when running the reset command. This enables users to change >>>>> the default behavior to take advantage of the performance advantages of >>>>> avoiding the scan for unstaged changes after reset. Defaults to false. >>>> >>>> As with the previous patch, my knee-jerk reaction is that this really >>>> feels wrong being tied to --quiet. It's particularly unintuitive. >>>> >>>> What I _could_ see, and what would feel more natural is if you add a >>>> new option (say, --optimize) which is more general, incorporating >>>> whatever optimizations become available in the future, not just this >>>> one special-case. A side-effect of --optimize is that it implies >>>> --quiet, and that is something which can and should be documented. >>> >>> Heh, I just wrote something very similar elsewhere in the thread. I'm >>> still not sure if it's a dumb idea, but at least we can be dumb >>> together. >> >> Same here. I'm in general if favor of having the ability to configure >> porcelain command-line options, but in this case it seems like it would >> be more logical to head for something like: >> >> core.uiMessaging=[default,exhaustive,lossyButFaster,quiet] >> >> Where default would be our current "exhaustive", and this --quiet case >> would be covered by lossyButFaster, but also things like the >> "--no-ahead-behind" flag for git-status. >> > > This sounds like an easy way to choose a set of default values that we > think make sense to get bundled together. That could be a way for > users to quickly choose a set of good defaults but I still think you > would want find grained control over the individual settings. Would you? It seems wanting to configure reset's --quiet in particular is purely a proxy goal for wanting to toggle off slow things in the UI. Otherwise why focus on it, and not the plethora of other --quiet options we have? # Including (but probably not limited to): $ git grep -e OPT__QUIET -e '(OPT|option).*"quiet"' -- '*.[ch]' | wc -l 34 > Coming up with the set of values to bundle together, figuring out the > hierarchy of precedence for this new global config->individual > config->individual command line[...] If we'd still want reset.quiet & whatever the global "turn off slow stuff" UI option is then this part is easy and e.g. {transfer,fetch,receive}.fsckObjects can be used as a template for how to do it. https://github.com/git/git/blob/v2.19.0/fetch-pack.c#L1432-L1443 https://github.com/git/git/blob/v2.19.0/fetch-pack.c#L859-L863 I.e. the more specific option always overrides the less specific one. > [...]updating the code to make it all work is outside the scope of > this particular patch series. Is that a Jedi mind trick to get out of patch review? :) I understand that it's not the patch you wrote, but sometimes feedback is "maybe we shouldn't do this, but this other thing". The --ahead-behind config setting stalled on-list before: https://public-inbox.org/git/36e3a9c3-f7e2-4100-1bfc-647b809a09d0@xxxxxxxxxxxxxxxxx/ Now we have this similarly themed thing. I think we need to be mindful of how changes like this can add up to very confusing UI. I.e. in this case I can see a "how take make git fast on large repos" post on stackoverflow in our future where the answer is setting a bunch of seemingly irrelevant config options like reset.quiet and status.aheadbehind=false etc. So maybe we should take a step back and consider if the real thing we want is just some way for the user to tell git "don't work so hard at coming up with these values". That can also be smart, e.g. some "auto" setting that tweaks it based on estimated repo size so even with the same config your tiny dotfiles.git will get "ahead/behind" reporting, but not when you cd into windows.git. >> Just on this implementation: The usual idiom for flags as config is >> command.flag=xyz, not command.flagDefault=xyz, so this should be >> reset.quiet. >> > > Thanks, I agree and fixed that in later iterations.