Created
September 12, 2012 14:41
-
-
Save ofZach/3707086 to your computer and use it in GitHub Desktop.
good gitignore for OF
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
# Some general ignore patterns | |
build/ | |
obj/ | |
*.o | |
Debug*/ | |
Release*/ | |
*.mode* | |
*.app/ | |
*.pyc | |
.svn/ | |
#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 | |
#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
👏