On 12/9/2020 7:13 PM, Junio C Hamano wrote: > Josh Steadmon <steadmon@xxxxxxxxxx> writes: > >> # start registers the repo >> - git config --get --global maintenance.repo "$(pwd)" && >> + git config --get --global --fixed-value maintenance.repo "$(pwd)" && > > The rewrite makes it better than the original, but I wonder why the > original did not do a more obvious maintenance.repo is a multi-valued config setting, so it is possible that there are multiple existing values. Hence the reason for needing the value filter. Thanks, -Stolee