-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
61 lines (50 loc) · 1016 Bytes
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# You can keep your repository small and manageable with a .gitignore file.
# Prevent build artifacts, large binary files, and other large file types
# such as log files, media files, and executables from slowing down your workflow.
#
# If you need to keep large files in Bitbucket, consider introducing
# Git Large File Storage (Git LFS) as part of your workflow.
#
# Learn more about .gitignore:
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
# Learn more about Git LFS for large files:
# https://www.atlassian.com/git/tutorials/git-lfs
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.pyc
# Logs and Output files
*.log
*raw_data/
*logs/
*output/
*.ini
# C extensions
*.so
# Distribution / packaging
.Python
# PyInstaller
*.manifest
*.spec
# Translations
*.mo
*.pot
# Jupyter Notebook
.ipynb_checkpoints
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
*tableau-ui/
# OS generated
.DS_Store
# VS Code
*.code-workspace
.vscode/
# etc
*~