Create .gitignore file for excluding any binary/executable files (#103)
The .gitignore file is copied from pg_bigm. This doesn't contain files generated on Windows development environments for now, but they will be added when anyone using Windows claim it.
This commit is contained in:
parent
b7be2aa7ff
commit
36d4a4770e
1 changed files with 8 additions and 0 deletions
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Global excludes across all subdirectories
|
||||
*.bc
|
||||
*.o
|
||||
*.so
|
||||
regression.*
|
||||
|
||||
# Generated subdirectories
|
||||
/results/
|
||||
Loading…
Reference in a new issue