83 lines
987 B
Plaintext
83 lines
987 B
Plaintext
# http://github.com/github/gitignore
|
|
|
|
### Linux
|
|
.*
|
|
!.gitignore
|
|
*~
|
|
|
|
### Windows
|
|
# image file caches
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
# Folder config file
|
|
Desktop.ini
|
|
# Recycle Bin used on file shares
|
|
$RECYCLE.BIN/
|
|
|
|
### Mac OSX
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
# Thumbnails
|
|
._*
|
|
# Files that might appear on external disk
|
|
.Spotlight-V100
|
|
.Trashes
|
|
|
|
### compiled source
|
|
*.com
|
|
*.class
|
|
*.dll
|
|
*.exe
|
|
*.o
|
|
*.so
|
|
|
|
### packages
|
|
# it's better to unpack these files and commit the raw source
|
|
# git has its own built in compression methods
|
|
*.7z
|
|
*.jar
|
|
*.rar
|
|
*.zip
|
|
*.gz
|
|
*.bzip
|
|
*.bz2
|
|
*.xz
|
|
*.lzma
|
|
|
|
### packing-only formats
|
|
*.iso
|
|
*.tar
|
|
|
|
### package management formats
|
|
*.dmg
|
|
*.xpi
|
|
*.gem
|
|
*.egg
|
|
*.deb
|
|
*.rpm
|
|
|
|
### logs and databases
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
|
|
### eclipse specific
|
|
*.pydevproject
|
|
.project
|
|
.metadata
|
|
local.properties
|
|
.classpath
|
|
.settings/
|
|
.loadpath
|
|
# External tool builders
|
|
.externalToolBuilders/
|
|
# Locally stored "Eclipse launch configurations"
|
|
*.launch
|
|
# CDT-specific
|
|
.cproject
|
|
# PDT-specific
|
|
.buildpath
|
|
|