-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
88 lines (77 loc) · 1.88 KB
/
.gitignore
File metadata and controls
88 lines (77 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# System Files
# These files are automatically generated by the operating system and don’t need to be tracked in version control.
.DS_Store
Thumbs.db
ehthumbs.db
*~
# IDE/Editor-specific Files
# Most development environments or text editors generate project-specific files that you don’t need to track in Git.
# Visual Studio Code
.vscode/
# Node.js (for JavaScript/TypeScript projects)
# Node.js-based projects often generate `node_modules`, a `dist` or `build` folder, and various log files that should be ignored.
node_modules/
npm-debug.log
yarn-error.log
*.tgz
/dist/
/build/
# Python (for Python projects)
# Python environments and packages generate files and directories that you don’t need to track.
*.pyc
*.pyo
__pycache__/
env/
venv/
*.egg-info/
# Java (for Java projects)
# Java projects often generate compiled bytecode (`.class` files) and build directories that should be ignored.
*.class
*.jar
*.war
*.ear
target/
# Compiled Code and Binary Files
# These files are generated from the source code and don’t need to be tracked.
*.o
*.a
*.so
*.exe
*.out
*.app
# Log and Temporary Files
# Temporary files or logs generated during development, testing, or production should be ignored.
*.log
*.tmp
*.swp
*.swo
# Build Artifacts
# Generated during build processes, and should not be versioned.
dist
/build
/target
/out
# Docker Files
# Docker-related files that are typically generated by builds or containers.
.docker/
docker-compose.override.yml
# Cloud and CI/CD Configurations
# Cloud or CI/CD environments often create files that don't need to be tracked.
#.github/workflows/*.yml
.aws/
.azure/
# Environment Configuration Files
# Files that contain sensitive or environment-specific data should not be tracked.
.env
.env.local
.env.development
.env.test
# Other Miscellaneous Files
# Other project-specific files that don’t need versioning.
*.bak
*.swp
.idea/
.vscode/
.pnpm/
.npm/
.bower/