Re: [hackers] [sbase] Add .gitignore || Michael Forney

2019-07-01 Thread Michael Forney
On 2019-07-01, Anselm Garbe wrote: > Hi there, > > On Sat, 29 Jun 2019 at 20:21, wrote: >> +++ b/.gitignore >> @@ -0,0 +1,99 @@ >> +*.o >> +/getconf.h >> +/libutf.a >> +/libutil.a > [..] > > I suggest: > > * > !*.c > !*.h > gitconf.h > > or something along those lines. Then you don't need to main

Re: [hackers] [sbase] Add .gitignore || Michael Forney

2019-07-01 Thread Michael Forney
On 2019-07-01, David Demelier wrote: > I think the Makefile rule is redundant and keeping just the .gitignore > could be enough. Because to me a project/code/application should not > know which SCM it is based on. That's also why I personnally exclude > SCMs bits from distributions files (includin

Re: [hackers] [sbase] Add .gitignore || Michael Forney

2019-07-01 Thread Anselm Garbe
Hi there, On Sat, 29 Jun 2019 at 20:21, wrote: > +++ b/.gitignore > @@ -0,0 +1,99 @@ > +*.o > +/getconf.h > +/libutf.a > +/libutil.a [..] I suggest: * !*.c !*.h gitconf.h or something along those lines. Then you don't need to maintain all the cruft and can also get rid of this Makefile rule.

Re: [hackers] [sbase] Add .gitignore || Michael Forney

2019-07-01 Thread David Demelier
Le 30/06/2019 à 05:20, g...@suckless.org a écrit : commit 9ae6c45097e48de66219366f1c55bc4eb01adc7f Author: Michael Forney AuthorDate: Thu Jun 13 13:52:52 2019 -0700 Commit: Michael Forney CommitDate: Fri Jun 28 00:10:10 2019 -0700 Add .gitignore Also, add rule to regene

Re: [hackers] [sbase] Add .gitignore || Michael Forney

2019-06-30 Thread Quentin Rameau
> > yuck > > Remarks like this aren't constructive, please keep them to yourself. Come on, don't be butthurted. > I already justified why adding .gitignore and rule to regenerate it is > useful. I'm sorry that you don't approve, but not having a .gitignore > was a significant annoyance to me a

Re: [hackers] [sbase] Add .gitignore || Michael Forney

2019-06-30 Thread Michael Forney
On 2019-06-30, Quentin Rameau wrote: >> Add .gitignore >> >> Also, add rule to regenerate in case executable list changes. > > yuck Remarks like this aren't constructive, please keep them to yourself. I already justified why adding .gitignore and rule to regenerate it is useful. I'm sorr

Re: [hackers] [sbase] Add .gitignore || Michael Forney

2019-06-30 Thread Quentin Rameau
> Add .gitignore > > Also, add rule to regenerate in case executable list changes. yuck

[hackers] [sbase] Add .gitignore || Michael Forney

2019-06-29 Thread git
commit 9ae6c45097e48de66219366f1c55bc4eb01adc7f Author: Michael Forney AuthorDate: Thu Jun 13 13:52:52 2019 -0700 Commit: Michael Forney CommitDate: Fri Jun 28 00:10:10 2019 -0700 Add .gitignore Also, add rule to regenerate in case executable list changes. diff --git a/.git