.gitignore 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. out/
  2. # General
  3. .DS_Store
  4. .AppleDouble
  5. .LSOverride
  6. # Icon must end with two \r
  7. Icon
  8. # Thumbnails
  9. ._*
  10. # Files that might appear in the root of a volume
  11. .DocumentRevisions-V100
  12. .fseventsd
  13. .Spotlight-V100
  14. .TemporaryItems
  15. .Trashes
  16. .VolumeIcon.icns
  17. .com.apple.timemachine.donotpresent
  18. # Directories potentially created on remote AFP share
  19. .AppleDB
  20. .AppleDesktop
  21. Network Trash Folder
  22. Temporary Items
  23. .apdisk
  24. *~
  25. # temporary files which can be created if a process still has a handle open of a deleted file
  26. .fuse_hidden*
  27. # KDE directory preferences
  28. .directory
  29. # Linux trash folder which might appear on any partition or disk
  30. .Trash-*
  31. # .nfs files are created when an open file is removed but is still being accessed
  32. .nfs*
  33. # Windows thumbnail cache files
  34. Thumbs.db
  35. Thumbs.db:encryptable
  36. ehthumbs.db
  37. ehthumbs_vista.db
  38. # Dump file
  39. *.stackdump
  40. # Folder config file
  41. [Dd]esktop.ini
  42. # Recycle Bin used on file shares
  43. $RECYCLE.BIN/
  44. # Windows Installer files
  45. *.cab
  46. *.msi
  47. *.msix
  48. *.msm
  49. *.msp
  50. # Windows shortcuts
  51. *.lnk