.gitignore 797 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #java开发通用模版
  2. *.class
  3. #package file
  4. *.war
  5. *.ear
  6. *.zip
  7. *.tar.gz
  8. *.rar
  9. #maven ignore
  10. target/
  11. build/
  12. #eclipse ignore
  13. .settings/
  14. .project
  15. .classpatch
  16. #Intellij idea
  17. .idea/
  18. /idea/
  19. *.ipr
  20. *.iml
  21. *.iws
  22. # temp file
  23. *.log
  24. *.cache
  25. *.diff
  26. *.patch
  27. *.tmp
  28. # system ignore
  29. .DS_Store
  30. Thumbs.db
  31. #前端开发能用模板
  32. # Numerous always-ignore extensions
  33. *.bak
  34. *.patch
  35. *.diff
  36. *.err
  37. # temp file for git conflict merging
  38. *.orig
  39. *.log
  40. *.rej
  41. *.swo
  42. *.swp
  43. *.zip
  44. *.vi
  45. *~
  46. *.sass-cache
  47. *.tmp.html
  48. *.dump
  49. # OS or Editor folders
  50. .DS_Store
  51. ._*
  52. .cache
  53. .project
  54. .settings
  55. .tmproj
  56. *.esproj
  57. *.sublime-project
  58. *.sublime-workspace
  59. nbproject
  60. thumbs.db
  61. *.iml
  62. # Folders to ignore
  63. .hg
  64. .svn
  65. .CVS
  66. .idea
  67. node_modules/
  68. /src/main/webapp/node_modules/
  69. jscoverage_lib/
  70. bower_components/
  71. dist/
  72. /src/main/webapp/node_modules/