Add .gitignore to exclude PDFs, Excel files, and test data
This commit is contained in:
parent
9d1aa187ce
commit
fb6d22caee
1 changed files with 19 additions and 0 deletions
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Exclude everything by default
|
||||
*
|
||||
|
||||
# Allow specific files
|
||||
!.gitignore
|
||||
!README.md
|
||||
!*.py
|
||||
!requirements.txt
|
||||
!LICENSE
|
||||
|
||||
# Explicitly exclude sensitive/output files (redundant but clear)
|
||||
*.pdf
|
||||
*.xlsx
|
||||
*.xls
|
||||
*.csv
|
||||
*.json
|
||||
__pycache__/
|
||||
*.pyc
|
||||
.DS_Store
|
||||
Loading…
Add table
Reference in a new issue