.gitignore 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Compiled class file
  2. target/
  3. #resources/
  4. !.mvn/wrapper/maven-wrapper.jar
  5. !**/src/main/**/target/
  6. !**/src/test/**/target/
  7. #logback.xml
  8. application-druid-rt.yml
  9. application-druid-yjf.yml
  10. ### STS ###
  11. .apt_generated
  12. .classpath
  13. .factorypath
  14. .project
  15. .settings
  16. .springBeans
  17. .sts4-cache
  18. *.DS_Store
  19. ### IntelliJ IDEA ###
  20. .idea
  21. *.iws
  22. *.iml
  23. *.ipr
  24. *.class
  25. # Log file
  26. *.log
  27. # BlueJ files
  28. *.ctxt
  29. # Mobile Tools for Java (J2ME)
  30. .mtj.tmp/
  31. # Package Files #
  32. *.jar
  33. *.war
  34. *.nar
  35. *.ear
  36. *.zip
  37. *.tar.gz
  38. *.rar
  39. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  40. hs_err_pid*
  41. #1.配置语法: 以斜杠“/”开头表示目录: 以星号“*”通配多个字符: 以问号“?”通配单个字符 以方括号“[]”包含单个字符的匹配列表: 以叹号“!”表示不忽略(跟踪)匹配到的文件或目录:
  42. #此外,git 对于 .ignore 配置文件是按行从上到下进行规则匹配的,意味着如果前面的规则匹配的范围更大,则后面的规则将不会生效