| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- # GIT Ignore
- # Mac OS X
- # ----------------------------------------------
- .DS_Store
- .AppleDouble
- .LSOverride
- # Icon must end with two \r
- Icon
- # Thumbnails
- ._*
- # Files that might appear on external disk
- .Spotlight-V100
- .Trashes
- # Directories potentially created on remote AFP share
- .AppleDB
- .AppleDesktop
- Network Trash Folder
- Temporary Items
- .apdisk
- # Linux
- # ----------------------------------------------
- *~
- # KDE directory preferences
- .directory
- # Windows
- # ----------------------------------------------
- # Windows image file caches
- Thumbs.db
- ehthumbs.db
- # Folder config file
- Desktop.ini
- # Recycle Bin used on file shares
- $RECYCLE.BIN/
- # Windows Installer files
- *.cab
- *.msi
- *.msm
- *.msp
- # Windows shortcuts
- *.lnk
- # C/C++
- # ----------------------------------------------
- # Object files
- *.elf
- *.o
- *.ko
- *.lo
- *.obj
- *.slo
- # Precompiled Headers
- *.gch
- *.pch
- # Libraries
- *.a
- *.la
- *.lai
- *.lib
- *.lo
- # Shared objects (inc. Windows DLLs)
- *.dll
- *.so
- *.so.*
- *.dylib
- # Executables
- *.exe
- *.out
- *.app
- *.i*86
- *.x86_64
- *.hex
- # Circle
- # ----------------------------------------------
- *.img
- *.lst
- *.map
- Config.mk
- # Directories
- # ----------------------------------------------
- doc/html/
- test/
- tmp/
|