.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. /*-mock
  17. # default HSQL database files for production mode
  18. /prodDb.*
  19. # general HSQL database files
  20. *Db.properties
  21. *Db.script
  22. # logs
  23. /stacktrace.log
  24. /test/reports
  25. /logs
  26. *.log
  27. *.log.*
  28. # project release file
  29. /*.war
  30. # plugin release file
  31. /*.zip
  32. /*.zip.sha1
  33. # older plugin install locations
  34. /plugins
  35. /web-app/plugins
  36. /web-app/WEB-INF/classes
  37. # "temporary" build files
  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. pring.swp
  58. *~.nib
  59. local.properties
  60. .classpath
  61. .settings/
  62. .loadpath
  63. # External tool builders
  64. .externalToolBuilders/
  65. # Locally stored "Eclipse launch configurations"
  66. *.launch
  67. # CDT-specific
  68. .cproject
  69. # PDT-specific
  70. .buildpath
  71. ## .gitignore for intellij
  72. *.iml
  73. *.ipr
  74. .idea/
  75. ## .gitignore for linux
  76. .*
  77. !.gitignore
  78. !.gitattributes
  79. !.editorconfig
  80. !.eslintrc
  81. !.travis.yml
  82. *~
  83. ## .gitignore for windows
  84. # Windows image file caches
  85. Thumbs.db
  86. ehthumbs.db
  87. # Folder config file
  88. Desktop.ini
  89. # Recycle Bin used on file shares
  90. $RECYCLE.BIN/
  91. ## .gitignore for mac os x
  92. .DS_Store
  93. .AppleDouble
  94. .LSOverride
  95. Icon
  96. # Thumbnails
  97. ._*
  98. # Files that might appear on external disk
  99. .Spotlight-V100
  100. .Trashes
  101. ## hack for graddle wrapper
  102. !wrapper/*.jar
  103. !**/wrapper/*.jar