.gitignore 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .metadata
  2. tmp/
  3. *.tmp
  4. *.bak
  5. *.swp
  6. *~.nib
  7. local.properties
  8. .settings
  9. .loadpath
  10. .recommenders
  11. .classpath
  12. .project
  13. .class
  14. # External tool builders
  15. .externalToolBuilders/
  16. # Locally stored "Eclipse launch configurations"
  17. *.launch
  18. # PyDev specific (Python IDE for Eclipse)
  19. *.pydevproject
  20. # CDT-specific (C/C++ Development Tooling)
  21. .cproject
  22. # CDT- autotools
  23. .autotools
  24. # Java annotation processor (APT)
  25. .factorypath
  26. # PDT-specific (PHP Development Tools)
  27. .buildpath
  28. # sbteclipse plugin
  29. .target
  30. # Tern plugin
  31. .tern-project
  32. # TeXlipse plugin
  33. .texlipse
  34. # STS (Spring Tool Suite)
  35. .springBeans
  36. # Code Recommenders
  37. .recommenders/
  38. # Annotation Processing
  39. .apt_generated/
  40. .apt_generated_test/
  41. # Scala IDE specific (Scala & Java development for Eclipse)
  42. .cache-main
  43. .scala_dependencies
  44. .worksheet
  45. # Uncomment this line if you wish to ignore the project description file.
  46. # Typically, this file would be tracked if it contains build/dependency configurations:
  47. #.project
  48. .idea
  49. **/target
  50. **/webapp/userfiles
  51. **/WEB-INF/classes
  52. jee-test.iml
  53. jeesite-web.iml
  54. # 编译产物 / 部署 jar(保留 jar/ 下的 winsw 工具:mescloudapp.exe / .xml / start.bat 等)
  55. jar/*.jar
  56. *.war
  57. # 大型 SQL 数据 dump(仅 db/mysql 下的 schema/init-data 进 git)
  58. mes_product_record.sql
  59. # 日志和临时
  60. *.log
  61. nohup.out
  62. logs/
  63. # IDE
  64. *.iml
  65. .vscode/
  66. # OS
  67. Thumbs.db
  68. .DS_Store