Last active
December 14, 2015 06:59
-
-
Save hiroyuki/5047242 to your computer and use it in GitHub Desktop.
horristic gitignore (windows VS added)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.mov | |
*.jpg | |
*.aif | |
*.mpeg | |
*.exe | |
*.exp | |
*.ilk | |
*.pdb | |
*.lib | |
*.otf | |
*plugins.dat | |
# OF-specific ignore patterns | |
openFrameworks.a | |
openFrameworksDebug.a | |
openFrameworksUniversal.a | |
#rule to avoid non-official apps going into git | |
#see apps/.gitignore | |
bin/apps/* | |
bin/data | |
#also, see examples/.gitignore | |
# Some general ignore patterns | |
build/ | |
obj/ | |
*.o | |
Debug*/ | |
Release*/ | |
*.mode* | |
*.app/ | |
*.pyc | |
.svn/ | |
# IDE-specific ignore patterns | |
#XCode | |
*.pbxuser | |
*.perspective | |
*.perspectivev3 | |
*.mode1v3 | |
*.mode2v3 | |
#XCode 4 | |
xcuserdata | |
*.xcworkspace | |
#Code::Blocks | |
*.depend | |
*.layout | |
#Visual Studio | |
*.sdf | |
*.opensdf | |
*.suo | |
ipch/ | |
#Eclipse | |
.metadata | |
local.properties | |
.externalToolBuilders | |
# OS-specific ignore patterns | |
#Linux | |
*~ | |
# KDE | |
.directory | |
.AppleDouble | |
#OSX | |
.DS_Store | |
*.swp | |
*~.nib | |
# Thumbnails | |
._* | |
#Windows | |
# Windows image file caches | |
Thumbs.db | |
# Folder config file | |
Desktop.ini | |
#Android | |
.csettings | |
/libs/openFrameworksCompiled/project/android/paths.make | |
# Miscellaneous | |
.mailmap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment