.gitignore 422 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Compiled class file
  2. *.class
  3. # Log file
  4. *.log
  5. # BlueJ files
  6. *.ctxt
  7. # Mobile Tools for Java (J2ME)
  8. .mtj.tmp/
  9. # Package Files #
  10. *.jar
  11. *.war
  12. *.nar
  13. *.ear
  14. *.zip
  15. *.tar.gz
  16. *.rar
  17. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  18. hs_err_pid*
  19. # 项目排除路径
  20. /target/
  21. #Intellij
  22. .idea/
  23. logs/
  24. target/
  25. # Editor directories and files
  26. .idea
  27. .vscode
  28. *.suo
  29. *.ntvs*
  30. *.njsproj
  31. *.sln
  32. *.sw?