forked from yuboon/java-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (54 loc) · 748 Bytes
/
Copy path.gitignore
File metadata and controls
66 lines (54 loc) · 748 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
# Git 忽略文件配置
# Maven 构建产物
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
# IDE 文件
.idea/
*.iws
*.iml
*.ipr
.vscode/
*.code-workspace
# 编译产物
*.class
*.jar
*.war
*.ear
*.nar
# 日志文件
*.log
logs/
# 操作系统文件
.DS_Store
Thumbs.db
# 补丁文件
patches/*.jar
!patches/README.md
# 临时文件
*.tmp
*.temp
*.swp
*~
# Spring Boot
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
# 数据库文件
*.db
*.h2.db
# 配置文件(可能包含敏感信息)
application-local.properties
application-dev.properties
application-prod.properties
# 密钥文件
*.key
*.pem
*.p12
*.jks
# 备份文件
*.bak
*.backup