Rework .gitignore (#147)
This commit reworks .gitignore to be more portable depending on the options used in the PostgreSQL build this module links to, in various aspects: - Ignore code generated for LLVM bitcode. - Dependencies. - Libraries. - Coverage files. - WIN32 and MacOS files. - Ignore isolation test subdirectory. - Do *not* ignore regression.diffs and regression.out. This is more useful to detect if something is broken in the tree, in line with upstream core practices. The contents of this file are updated to something closer to what upstream uses.
This commit is contained in:
parent
e92cbe543d
commit
e1c26275ff
1 changed files with 25 additions and 3 deletions
28
.gitignore
vendored
28
.gitignore
vendored
|
|
@ -1,8 +1,30 @@
|
||||||
# Global excludes across all subdirectories
|
# Object files
|
||||||
*.bc
|
|
||||||
*.o
|
*.o
|
||||||
|
|
||||||
|
# Coverage files
|
||||||
|
*.gcno
|
||||||
|
*.gcda
|
||||||
|
|
||||||
|
# Libraries
|
||||||
|
*.lib
|
||||||
|
*.a
|
||||||
|
|
||||||
|
# LLVM bitcode
|
||||||
|
*.bc
|
||||||
|
|
||||||
|
# Shared objects (inc. Windows DLLs)
|
||||||
|
*.dll
|
||||||
*.so
|
*.so
|
||||||
regression.*
|
*.so.*
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
# Executables
|
||||||
|
*.exe
|
||||||
|
*.app
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
.deps
|
||||||
|
|
||||||
# Generated subdirectories
|
# Generated subdirectories
|
||||||
/results/
|
/results/
|
||||||
|
/output_iso/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue