Last active
October 6, 2016 10:48
-
-
Save satoruhiga/6271020 to your computer and use it in GitHub Desktop.
.gitignore
This file contains 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
.svn | |
.hg | |
.cvs | |
# osx | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
Icon | |
*.app | |
._* | |
DerivedData | |
# xcode3 | |
*.mode1v3 | |
*.pbxuser | |
build/ | |
# xcode4 | |
*.xcodeproj/* | |
!*.xcodeproj/project.pbxproj | |
!*.xcodeproj/default.* | |
**/*.xcodeproj/* | |
!**/*.xcodeproj/project.pbxproj | |
!**/*.xcodeproj/default.* | |
*.xcworkspace/* | |
!*.xcworkspace/contents.xcworkspacedata | |
# windows | |
*.exe | |
Thumbs.db | |
ehthumbs.db | |
# vs | |
ipch/ | |
[Bb]in/ | |
[Oo]bj/ | |
*.aps | |
*.ncb | |
*.opensdf | |
*.sdf | |
*.cachefile | |
*.suo | |
*.user | |
*.sln.docstates | |
*.opendb | |
*.VC.db | |
# Object files | |
*.o | |
# Libraries | |
*.lib | |
*.a | |
# Shared objects (inc. Windows DLLs) | |
*.dll | |
*.so | |
*.so.* | |
*.dylib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment