diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-12-04 15:23:00 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-12-04 15:23:00 -0500 |
commit | d94f32d49f620fb08c1fd0e8c9345844ccd9b7c0 (patch) | |
tree | 8d65c393481430b10eb1fc2761f3628bd9a5faf4 | |
parent | 92c4dafe1eed511c5af92bcea5311cf627673377 (diff) | |
download | postgresql-d94f32d49f620fb08c1fd0e8c9345844ccd9b7c0.tar.gz postgresql-d94f32d49f620fb08c1fd0e8c9345844ccd9b7c0.zip |
Update top-level .gitignore.
Add a comment explaining our policy that we don't put excludes
for nonstandard tools into committed .gitignore files.
Also, remove the entries about libraries with .sl extensions,
since that convention was only used on now-desupported HP-UX.
Discussion: https://postgr.es/m/CAHxW8BAiyPwfXbN813GhorQozwMBs4f3DTxLkKNxiGQuJuw4Vw@mail.gmail.com
-rw-r--r-- | .gitignore | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 1c0f3e5e351..4e911395fe3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# This file contains ignores for build artifacts from standard builds. +# Auxiliary files from local workflows, your preferred editor, etc. should +# be ignored locally using $GIT_DIR/info/exclude or ~/.gitexclude. + # Global excludes across all subdirectories *.o *.obj @@ -6,10 +10,6 @@ *.so.[0-9] *.so.[0-9].[0-9] *.so.[0-9].[0-9][0-9] -*.sl -*.sl.[0-9] -*.sl.[0-9].[0-9] -*.sl.[0-9].[0-9][0-9] *.dylib *.dll *.exp |