Re: Multiple --global config workspaces?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Oct 18, 2022 at 12:02:30AM -0400, Elsie Hupp wrote:

> > Right, the value of an include path expands to a single file, and we do
> > not do any globbing. I suppose it would be possible to do, and we'd read
> > each file in sequence. But I'm not sure I'm convinced of the utility of
> > that (and again, it doesn't help the discoverability problem you had).
> 
> My thought is that globbing (I’m not sure of the terminology) should
> be supported to the extent that it’s valid bash syntax, and breaking
> consistency with bash could cause more confusion than just letting the
> user do weird or inadvisable things with the path variable that
> nonetheless have entirely predictable outcomes.

I'm not sure I buy this. We are not otherwise consistent with bash for
value expansion. For instance, we don't allow variable expansion like
$HOME. The only thing we share is the "~" magic.

Moreover, you are thinking of include.path as "cat":

> So, because, e.g., the following works:
> 
> > elsiehupp@Alpha:~$ cat ./**/github/.gitconfig
> > [user]
> > 	email = github@xxxxxxxxxxxxx
> 
> …one would expect, e.g., this gitconfig line to work, as well:
> 
> > [include] path = ./**/github/.gitconfig

The expansion of the glob is done by the shell. But it is "cat" which is
happy to receive multiple files as input. But many other commands are
not, and include.path is not.

None of which is to say you're wrong to think of it this way. It's a
perfectly valid mental model. It just happens not to be the mental model
we used when implementing it.

I'm not entirely opposed to expanding globs in include.path values if
somebody wants to go to the trouble to implement it, but:

  1. I'd be more convinced by a concrete use case. It sounds like
     conditional includes were the real sticking point for yours. Maybe
     somebody wants to do include.path on ".gitconfig.d/*" or something?
     I dunno.

  2. It does involve breaking backwards compatibility slightly, in that
     glob metacharacters do not currently need to be quoted. It's
     somewhat unlikely somebody would have included them literally,
     though.

     But having include.dir or similar would extend the system without
     breaking compatibility.

> > elsiehupp@Alpha:~$ git config --get-all user.email
> > github@xxxxxxxxxxxxx
> > gitlab@xxxxxxxxxxxxx
> > gnome@xxxxxxxxxxxxx
> > launchpad@xxxxxxxxxxxxx
> > github@xxxxxxxxxxxxx
> > xdg@xxxxxxxxxxxxx
> 
> I don’t know off the top of my head what happens when a single
> variable is defined multiple times. I do get the following output,
> though:

It depends on the variable. Most single-value options in Git are "last
one wins", but some are lists (e.g., remote.*.fetch). We also hold
config values for other porcelain scripts whose semantics we may not
even know ourselves. There are options to "git config" for specifying
how to handle these (e.g., --get-all).

-Peff



[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux