Re: [RFC PATCH v2 3/6] doc: Add namespace collision guidelines file

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

 




> On May 28, 2020, at 2:49 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote:
> 
> Kenneth Lorber <keni@xxxxxxx> writes:
> 
>> +Git uses identifiers in a number of different namespaces:
>> +
>> +* environment variables
>> +* files in $GIT_DIR
>> +* files in the working trees
>> +* config sections
>> +* hooks
>> +* attributes
> 
> The names of the subcommands "git" can spawn is a shared resource.
> You can install "git-imerge" program in one of the directories on
> your $PATH and say "git imerge" to invoke the program.  
> 
> Two third-party developers may have to coordinate to avoid giving
> the same name to their totally-unrelated tools, if they hope that
> both of their tools to be useful in the larger Git ecosystem.

So similar to the aliases case.

> 
>> +In order to reduce the chance of collisions between names Git uses
>> +and those used by other entities (users, groups, and extension authors),
>> +the following are recommended best practices.
> 
> OK.
> 
>> +Names reserved to Git:
> 
> s/to/by/ perhaps.

I don't believe so.  For example, under this proposal, the "my" items are
reserved by Git for the user, while the items in this section are reserved
to git itself.

s/to/for/ might be clearer?

> 
>> +Names reserved for individual users:
>> +
>> +* The directory `$GIT_DIR/my`
> 
> So an individual user is allowed to store anything in that
> directory, and "git" or any third-party tools won't care.  OK.
> 
>> +* Environment variables starting with `GIT_MY_`
> 
> Likewise.  But then the users can use MY_FOO_BLAH without GIT_
> prefix in the first place, so there isn't much gain there.  Downside
> for "git" and third-party tool authors is not so big (just the loss
> of a single prefix "_MY"), so perhaps it is OK.

The environment variable namespace is a mess in general; subdividing
something well known (GIT_) seemed safer then hoping for MY to be available.

Also, and this applies to some of the other cases below, one goal was
to make the rules as simple and therefore as consistent as possible.  So
we reserve the same names everywhere we can - little cost, added simplicity.

> 
>> +* Configuration section `my`
>> +* Files or directories in `$GIT_DIR/hooks` starting with `my_`
>> +* Attributes starting with `my_`
> 
> The last one does not make much sense.  You have to forbid defining
> my_attributes in .gitattributes files that are tracked in-tree;
> otherwise I cannot work with you on the same project, because I
> cannot use my_attributes for my own purpose in that project.

Yes, but they can be useful in $HOME/.config/git/attributes.

>  For
> the same reason, reserving attributes for individual repositories
> does not make much sense, either.

I may not be following you on this one.  What about the use case
of a filter written specifically for a project-specific
file type?  That would be a "this" attribute so it doesn't collide
with anything else.

> 
>> +Names reserved for individual repos:
>> +
>> +* The directory `$GIT_DIR/this`
> 
> It is unclear what it means to have $GIT_DIR/my and $GIT_DIR/this
> and how to choose which one of these two ought to be used for each
> occasion a user finds a need to store something in these places.

$GIT_DIR/my would be something a user installs to their local clone
to do something they want personally (contrived example: it's a good 
place to put their non-standard editor's temp files so they don't have to
touch the shared .gitignore files).

$GIT_DIR/this would be used for things that everyone working on that one
repo needs, but only for that one repo.

More generally, I'm not hoping to guess every possible use case, I'm trying
to specify a policy that can accommodate all possible use cases - so
generality over specific justifications.  

> 
>> +* Environment variables starting with `GIT_THIS_`
> 
> The utility of this one is dubious.  
> 
> 	$ export GIT_THIS_BLAH=value
> 	$ cd repo1 ; work work work
> 	$ cd ../repo2 ; work work work
> 
> Unless you arrange to reset GIT_THIS_* environment variable every
> time you visit a separate repository, it would not be pratical to
> use.

If you only consider env vars being passed in from the user or shell
initialization, I think you are correct.  However they could be useful
for passing information from one program to another.  Passing information
into a custom editor invoked from git commit might be a use case.

But again, being uniform is better than not. 

> 
>> +Names reserved for the lowest level group of people:
> 
> What's lowest level group of people?

Purposefully unspecified, but I can understand if I can't get away with that.

The lowest level group of people could be two people doing agile development,
everyone with a particular supervisor, a college class, a family, a department.
It's the last chance to be informal, before you either use the third-party
guidelines or go to the mailing list to ask for help.

Which brings us to:

> 
> Also, where did the guideline for third-party tools go?

That was in response to a comment from Abhishek Kumar; it was a
mistake on my part to take silence from both of you as agreement on my
compromise (which involved dropping the third-party section).

I'll put it back if I get enough encouragement to cut a v3.

> 
> At this point I need to say that this is not very well thought out
> (yet), or that this is not very well explained, or perhaps both,
> so I'll stop commenting on it for now.
> 
> Thanks.

You're welcome.  I've got 3 more emails from you to reply to but it may
not happen today.



[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