-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
99 lines (83 loc) · 987 Bytes
/
.gitignore
File metadata and controls
99 lines (83 loc) · 987 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
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
89
90
91
92
93
94
95
96
97
98
99
# Java 编译文件
*.class
*.jar
*.war
*.ear
*.nar
target/
out/
build/
bin/
# Java 日志文件
*.log
# Java 包文件
*.zip
*.tar.gz
*.rar
# IDE 相关文件
## IntelliJ IDEA
.idea/
*.iml
*.iws
*.ipr
## Eclipse
.project
.classpath
.settings/
.metadata/
## VS Code
.vscode/
*.code-workspace
## NetBeans
nbproject/
nbbuild/
dist/
nbdist/
# Maven
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
dependency-reduced-pom.xml
# Gradle
.gradle/
gradle-app.setting
!gradle-wrapper.jar
# 操作系统文件
## macOS
.DS_Store
.AppleDouble
.LSOverride
._*
## Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
## Linux
*~
.directory
# 临时文件
*.tmp
*.temp
*.swp
*.swo
*~
.cache/
# Node.js (如果有前端项目)
node_modules/
npm-debug.log
yarn-error.log
package-lock.json
yarn.lock
# 数据库文件
*.db
*.sqlite
*.sqlite3
# 环境配置文件(含敏感信息)
.env
.env.local
application-local.properties
application-dev.properties
# 其他
*.bak
*.orig