-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
36 lines (24 loc) · 1.23 KB
/
.gitignore
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
# Ignore jupyter notebook checkpoint folders
.ipynb_checkpoints/
# Ignoring test.py because it's a test file (scratch stuff)
test.py
# Ignore vscode local configuration (if used)
.vscode/
# This directory contains Python's compiled bytecode files, and can be ignored to prevent version control conflicts.
__pycache__/
# This wildcard expression matches compiled Python files and can be ignored to prevent version control conflicts.
*.pyc
# This wildcard expression matches optimized Python files and can be ignored to prevent version control conflicts.
*.pyo
# This directory contains the Conda environment and should be ignored to avoid tracking environment-specific files.
env/
# This file is created by macOS to store folder-specific metadata, and can be safely ignored.
.DS_Store
# This directory is created by PyCharm and can be ignored if you are using a different IDE.
.idea/
# This wildcard expression matches log files and can be ignored to prevent version control conflicts.
*.log
# This directory contains metadata about Python packages installed using pip and can be ignored to prevent version control conflicts.
*.egg-info/
# This wildcard expression matches original files and can be ignored to prevent version control conflicts.
*.orig