.gitignore 180 B

123456789101112131415161718
  1. # 编译输出
  2. out/
  3. target/
  4. # IDEA 配置(可选,看你需不需要共享)
  5. .idea/
  6. *.iml
  7. # 运行时配置
  8. config/
  9. # 日志
  10. *.log
  11. logs/
  12. # 系统文件
  13. .DS_Store
  14. Thumbs.db