设备管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
854 B

# ========== Maven核心忽略(多层级项目必配) ==========
# 匹配所有层级的target(父/子模块都覆盖)
**/target/
# Maven临时文件
*.maven
# ========== IntelliJ IDEA专属忽略 ==========
# IDEA项目配置目录(包含编译器、编码、数据源等配置)
**/.idea/
# 模块文件(每个子模块都会生成)
*.iml
*.ipr
*.iws
# IDEA编译输出目录(区别于Maven的target)
**/out/
# IDEA工作台配置(含运行配置、断点等)
**/workspace.xml
**/dataSources/
**/dataSources.local.xml
**/httpRequests/
# ========== JRebel热部署配置(你项目中出现的rebel.xml) ==========
**/rebel.xml
# ========== 通用临时/日志文件 ==========
# 日志目录
**/logs/
# 临时文件
*.tmp
*.bak
*.swp
# Windows系统缩略图
Thumbs.db
# Mac系统隐藏文件(跨平台兼容)
.DS_Store