.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. ## .gitignore for Grails 1.2 and 1.3
  2. # .gitignore for maven
  3. target/
  4. *.releaseBackup
  5. .idea
  6. # web application files
  7. #/web-app/WEB-INF
  8. # IDE support files
  9. /.classpath
  10. /.launch
  11. /.project
  12. /.settings
  13. /*.launch
  14. /*.tmproj
  15. /ivy*
  16. /eclipse
  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. target/
  39. out/
  40. build/
  41. # other
  42. *.iws
  43. #.gitignore for java
  44. *.class
  45. # Package Files #
  46. *.jar
  47. *.war
  48. *.ear
  49. ## .gitignore for eclipse
  50. *.pydevproject
  51. .project
  52. .metadata
  53. bin/**
  54. tmp/**
  55. tmp/**/*
  56. *.tmp
  57. *.bak
  58. *.swp
  59. *~.nib
  60. local.properties
  61. .classpath
  62. .settings/
  63. .loadpath
  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