.gitignore 955 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # ---> Java
  2. *.class
  3. # Mobile Tools for Java (J2ME)
  4. .mtj.tmp/
  5. # Package Files #
  6. *.jar
  7. *.war
  8. *.ear
  9. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  10. hs_err_pid*
  11. # ---> Windows
  12. # Windows image file caches
  13. Thumbs.db
  14. ehthumbs.db
  15. # Folder config file
  16. Desktop.ini
  17. # Recycle Bin used on file shares
  18. $RECYCLE.BIN/
  19. # Windows Installer files
  20. *.cab
  21. *.msi
  22. *.msm
  23. *.msp
  24. # Windows shortcuts
  25. *.lnk
  26. # ---> macOS
  27. .DS_Store
  28. .AppleDouble
  29. .LSOverride
  30. # Icon must end with two \r
  31. Icon
  32. # Thumbnails
  33. ._*
  34. # Files that might appear in the root of a volume
  35. .DocumentRevisions-V100
  36. .fseventsd
  37. .Spotlight-V100
  38. .TemporaryItems
  39. .Trashes
  40. .VolumeIcon.icns
  41. # Directories potentially created on remote AFP share
  42. .AppleDB
  43. .AppleDesktop
  44. Network Trash Folder
  45. Temporary Items
  46. .apdisk
  47. # ---> Linux
  48. *~
  49. # KDE directory preferences
  50. .directory
  51. # Linux trash folder which might appear on any partition or disk
  52. .Trash-*