Re: Ignore Visual Studio's Temp Files While Working with PG on Windows

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Yasir <yasir(dot)hussain(dot)shah(at)gmail(dot)com>
Cc: Josef Šimánek <josef(dot)simanek(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Ignore Visual Studio's Temp Files While Working with PG on Windows
Date: 2024-05-18 20:36:38
Message-ID: 3030319.1716064598@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

Yasir <yasir(dot)hussain(dot)shah(at)gmail(dot)com> writes:
> We can add it to "~/.config/git/ignore" as it will ignore globally on
> windows which we don't want. Also we don't have ".git/info/exclude" in PG
> project's so the best place left is projects's .gitignore. That's what was
> patched.

As Peter said, we're not going to do that. The intention with
the project's .gitignore files is to ignore files that are
intentionally built by our "make" targets (and, hopefully, will be
removed by "make maintainer-clean"). Anything else that you want
git to ignore should be in a personal ignore list; especially
files that are platform-specific. The fact that it's reasonable
to ignore ".vs" files when working with your toolset doesn't mean
that it's reasonable to ignore them when working on some other
platform.

If we used some other policy, we'd have tons of debates about
which files were reasonable to exclude. For myself, for example,
I exclude "*~" (Emacs backup files) and "*.orig" (patch(1)
backup files) but those choices are very much dependent on the
set of tools I choose to use. Other developers have other
personal exclusion lists. If we tried to make the project's
files be the union of all those lists, we'd be at serious risk
of ignoring stuff we absolutely shouldn't ignore in some contexts.

regards, tom lane

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Josef Šimánek 2024-05-18 20:42:37 Re: Ignore Visual Studio's Temp Files While Working with PG on Windows
Previous Message Yasir 2024-05-18 19:43:42 Re: Ignore Visual Studio's Temp Files While Working with PG on Windows

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2024-05-18 20:37:54 Re: First draft of PG 17 release notes
Previous Message Yasir 2024-05-18 19:43:42 Re: Ignore Visual Studio's Temp Files While Working with PG on Windows