-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
58 lines (50 loc) · 886 Bytes
/
Copy path.gitignore
File metadata and controls
58 lines (50 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Ignore large data files
*.hdf
*.HDF
*.h5
*.nc
# Ignore large binary outputs
*.pdf
*.odp
*.ppt
*.pptx
*.doc
*.docx
# Ignore temporary and cache files
*.tmp
*.bak
*.swp
*.DS_Store
# Ignore Python build/cache
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
dist/
build/
# Ignore Jupyter notebook checkpoints
.ipynb_checkpoints/
# Data directories (track structure with .gitkeep/README files only)
data/*
!data/
!data/intermediate/
!data/**/.gitkeep
!data/**/README.md
!data/**/descriptions/
!data/**/descriptions/*.md
# Figure directories (track structure with .gitkeep/README files only)
figure/*
!figure/
!figure/**/.gitkeep
!figure/**/README.md
# Figures directory (plural)
figures/*
!figures/
!figures/**/.gitkeep
!figures/**/README.md
# Notebook directories (track structure with .gitkeep/README files only)
notebooks/*
!notebooks/
!notebooks/**/.gitkeep
!notebooks/**/README.md