.gitignore 1.0 KB

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