.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. ## .gitignore for Grails 1.2 and 1.3
  2. # .gitignore for maven
  3. target/
  4. *.releaseBackup
  5. # web application files
  6. #/web-app/WEB-INF
  7. # IDE support files
  8. /.classpath
  9. /.launch
  10. /.project
  11. /.settings
  12. /*.launch
  13. /*.tmproj
  14. /ivy*
  15. /eclipse
  16. # default HSQL database files for production mode
  17. /prodDb.*
  18. # general HSQL database files
  19. *Db.properties
  20. *Db.script
  21. # logs
  22. /stacktrace.log
  23. /test/reports
  24. /logs
  25. *.log
  26. *.log.*
  27. # project release file
  28. /*.war
  29. # plugin release file
  30. /*.zip
  31. /*.zip.sha1
  32. # older plugin install locations
  33. /plugins
  34. /web-app/plugins
  35. /web-app/WEB-INF/classes
  36. # "temporary" build files
  37. target/
  38. out/
  39. build/
  40. # other
  41. *.iws
  42. #.gitignore for java
  43. *.class
  44. # Package Files #
  45. *.jar
  46. *.war
  47. *.ear
  48. ## .gitignore for eclipse
  49. *.pydevproject
  50. .project
  51. .metadata
  52. bin/**
  53. tmp/**
  54. tmp/**/*
  55. *.tmp
  56. *.bak
  57. *.swp
  58. *~.nib
  59. local.properties
  60. .classpath
  61. .settings/
  62. .loadpath
  63. MANIFEST.MF
  64. # External tool builders
  65. .externalToolBuilders/
  66. # Locally stored "Eclipse launch configurations"
  67. *.launch
  68. # CDT-specific
  69. .cproject
  70. # PDT-specific
  71. .buildpath
  72. ## .gitignore for intellij
  73. *.iml
  74. *.ipr
  75. *.iws
  76. .idea/
  77. ## .gitignore for linux
  78. .*
  79. !.gitignore
  80. !.gitattributes
  81. !.editorconfig
  82. !.eslintrc
  83. !.travis.yml
  84. *~
  85. ## .gitignore for windows
  86. # Windows image file caches
  87. Thumbs.db
  88. ehthumbs.db
  89. # Folder config file
  90. Desktop.ini
  91. # Recycle Bin used on file shares
  92. $RECYCLE.BIN/
  93. ## .gitignore for mac os x
  94. .DS_Store
  95. .AppleDouble
  96. .LSOverride
  97. Icon
  98. # Thumbnails
  99. ._*
  100. # Files that might appear on external disk
  101. .Spotlight-V100
  102. .Trashes
  103. ## hack for graddle wrapper
  104. !wrapper/*.jar
  105. !**/wrapper/*.jar