.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. # 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. *.iws
  75. .idea/
  76. ## .gitignore for linux
  77. .*
  78. !.gitignore
  79. *~
  80. ## .gitignore for windows
  81. # Windows image file caches
  82. Thumbs.db
  83. ehthumbs.db
  84. # Folder config file
  85. Desktop.ini
  86. # Recycle Bin used on file shares
  87. $RECYCLE.BIN/
  88. ## .gitignore for mac os x
  89. .DS_Store
  90. .AppleDouble
  91. .LSOverride
  92. Icon
  93. # Thumbnails
  94. ._*
  95. # Files that might appear on external disk
  96. .Spotlight-V100
  97. .Trashes
  98. ## hack for graddle wrapper
  99. !wrapper/*.jar
  100. !**/wrapper/*.jar