.gitignore 306 B

123456789101112131415161718192021222324252627282930313233343536
  1. # maven ignore
  2. target/
  3. *.jar
  4. !.mvn/wrapper/*
  5. *.war
  6. *.zip
  7. *.tar
  8. *.tar.gz
  9. # eclipse ignore
  10. .settings/
  11. .project
  12. .classpath
  13. # idea ignore
  14. .idea/
  15. *.ipr
  16. *.iml
  17. *.iws
  18. # temp ignore
  19. *.log
  20. *.cache
  21. *.diff
  22. *.patch
  23. *.tmp
  24. # system ignore
  25. .DS_Store
  26. Thumbs.db
  27. *.orig
  28. *.out
  29. *.pid
  30. # custom
  31. mybatis_plus_generator.author