-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (50 loc) · 1.56 KB
/
Copy path.gitignore
File metadata and controls
59 lines (50 loc) · 1.56 KB
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
59
# ==============================================================================
# Data and Large Files (Crucial for Data Analysts)
# ==============================================================================
# Block large files
df_final_demo.txt
df_final_experiment_clients.txt
df_final_web_data_pt_1.txt
df_final_web_data_pt_2.txt
# Block all CSV files from being tracked
#*.csv
# If you have specific, small CSVs you MUST track, uncomment the next line and change the name:
# !important_metadata.csv
# Block other common large data formats
*.xlsx
*.json
*.parquet
*.feather
*.pkl
*.pickle
*.tsv
*.sqlite
*.db
# ==============================================================================
# Jupyter Notebooks & Python Outputs
# ==============================================================================
# Notebook checkpoints (autosaves created by Jupyter)
.ipynb_checkpoints/
*/.ipynb_checkpoints/
# Python bytecode and cache
__pycache__/
*.py[cod]
*$py.class
# Virtual environments (if you use them locally)
.venv/
venv/
env/
ENV/
# ==============================================================================
# Visual Studio Code (Local Settings)
# ==============================================================================
# Ignore your personal VS Code settings, workspace files, and history
.vscode/
*.code-workspace
# ==============================================================================
# System Files
# ==============================================================================
# macOS specific files
.DS_Store
# Windows specific files
Thumbs.db