.gitignore 312 B

12345678910111213141516171819202122232425262728293031323334353637
  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. logs/
  20. *.log
  21. *.cache
  22. *.diff
  23. *.patch
  24. *.tmp
  25. # system ignore
  26. .DS_Store
  27. Thumbs.db
  28. *.orig
  29. *.out
  30. *.pid
  31. # custom
  32. mybatis_plus_generator.author