| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | Magnus Hagander <magnus(at)hagander(dot)net> |
| Cc: | Peter Eisentraut <peter_e(at)gmx(dot)net>, Robert Haas <robertmhaas(at)gmail(dot)com>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
| Subject: | Re: .gitignore files, take two |
| Date: | 2010-09-21 20:06:48 |
| Message-ID: | 8308.1285099608@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Magnus Hagander <magnus(at)hagander(dot)net> writes:
> My gitignore manpage doesn't say anything about supporting regular
> expressions at all. And actually adding the line proposed by Peter
> doesn't work.
Yeah, I was wondering about that. They're meant to be shell patterns
not regexps, I think.
> What works is adding all of:
> *.so
> *.so.[0-9]
> *.so.[0-9].[0-9]
> That will break if there's a two-digit number, i guess. Do we want to
> go with that anyway?
What we can do, when and if any of those numbers get to two digits,
is add
*.so.[0-9][0-9]
etc etc. Which would not need to be back-patched. So let's just go in
that direction.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Andrew Dunstan | 2010-09-21 20:09:09 | Re: .gitignore files, take two |
| Previous Message | Magnus Hagander | 2010-09-21 19:43:22 | Re: .gitignore files, take two |