Re: [PATCH 02/11] gitignore: Remove entries duplicating global entries

2020-09-10 Thread Elliott Mitchell
On Thu, Sep 10, 2020 at 11:20:11AM +0200, Jan Beulich wrote: > On 02.09.2020 00:02, Elliott Mitchell wrote: > > --- a/.gitignore > > +++ b/.gitignore > > @@ -1,6 +1,5 @@ > > .hg > > .*.cmd > > -.*.tmp > > When the shell expands *.tmp, any .*.tmp won't match. Is this different > for git? (Probabl

Re: [PATCH 02/11] gitignore: Remove entries duplicating global entries

2020-09-10 Thread Jan Beulich
On 02.09.2020 00:02, Elliott Mitchell wrote: > --- a/.gitignore > +++ b/.gitignore > @@ -1,6 +1,5 @@ > .hg > .*.cmd > -.*.tmp When the shell expands *.tmp, any .*.tmp won't match. Is this different for git? (Probably it is, seeing that we only have *.d and *.d2, but I'd still like to double chec

[PATCH 02/11] gitignore: Remove entries duplicating global entries

2020-09-09 Thread Elliott Mitchell
As "config.cache", "config.log" and "config.status" already have global matching patterns, remove these subdirectory entries. "autom4te.cache/" similarly had a global match, so remove those duplicates. "*.py[ocd]", "*.tmp" and "*.bin" were present, go after their duplicates too. "docs/txt/" cove