-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
49 lines (41 loc) · 840 Bytes
/
.gitignore
File metadata and controls
49 lines (41 loc) · 840 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
# Operating System Files
.DS_Store
Thumbs.db
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
.venv/
*.egg-info/
.pytest_cache/
.mypy_cache/
.ipynb_checkpoints/
# IDEs and Editors
.idea/
.vscode/
*.swp
*.swo
*.sublime-project
*.sublime-workspace
# Default folder containing git repositories
deploy/
# Temporary files created by the script
# The script uses tempfile.mkdtemp() which creates directories like /tmp/tmpXXXXXX
# These are usually cleaned up automatically, but adding a general temp directory pattern is good.
tmp/
temp/
*.tmp
# Output files
# If the script saves the generated article, it might be named something like git_report.md
*.md
# Configuration files
# It's good practice to ignore config files that might contain sensitive info or
# are specific to a local environment.
config.ini
*.ini
# Logs
*.log