Tamino Bauknecht <dev@xxxxxx> writes: > This option can be used to restore the default behavior of "git fetch" > if the "fetch.all" config option is enabled. > The flag cannot be used in combination with "--all" or explicit > remote(s). There is "--all" option that can be used to alter the behaviour of the command. This is OPT_BOOL(), and if you have [alias] f = fetch --all you can say "git f --no-all" to countermand it from the command line, as it is equivalent to "git fetch --all --no-all" and the last one wins. If you add "fetch.all" that makes the command behave as if it was given "--all" from the command line even when the user didn't, passing "--no-all" would be a lot more natural way to countermand it, no? "git fetch" (no parameters) are omitting two kinds of stuff, i.e., where we fetch from (repository) and what we are fetching from there (refspec). You created a need to override the configured fetch source (aka fetch.all), and in order to countermand it, one way is to tell the command to "fetch from the default repository", but for that, an option that does not say "repository" anywhere is closing door for future evolution of the command. What if the next person (which could be you) invented a way to say what refspec to be used without specifying it from the command line, and needs to say "no, no, no, do not use the configured value, but just use the default"? In other words, "--default" will be met by a reaction "default of which one???". Compared to that, I would think "--[no-]all" would be a lot simpler to understand. The best part is that you do not have to add a new option. Just make sure the one specified from the command line, either --all or --no-all, will cause the command to ignore the configured fetch.all and you do not need to add anything new to the UI.