Created
December 20, 2012 05:47
-
-
Save chiahsien/4343199 to your computer and use it in GitHub Desktop.
My .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
#===============# | |
# For Windows | |
#===============# | |
# Windows image file caches | |
Thumbs.db | |
# Folder config file | |
Desktop.ini | |
# Recycle Bin used on file shares | |
$RECYCLE.BIN/ | |
#===============# | |
# For Mac OS X | |
#===============# | |
.DS_Store | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
#===============# | |
# SVN | |
#===============# | |
.svn/ | |
#===============# | |
# Common | |
#===============# | |
*.tmp | |
*.temp | |
*~ | |
#===============# | |
# C++ | |
#===============# | |
# Compiled Object files | |
*.slo | |
*.lo | |
*.o | |
# Compiled Dynamic libraries | |
*.so | |
# Compiled Static libraries | |
*.lai | |
*.la | |
*.a | |
#===============# | |
# C | |
#===============# | |
# Object files | |
*.o | |
# Libraries | |
*.lib | |
# Shared objects (inc. Windows DLLs) | |
*.dll | |
*.so | |
# Executables | |
*.exe | |
*.out | |
#===============# | |
# Objective-C | |
#===============# | |
# Xcode | |
.DS_Store | |
*/build/* | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
*.xcworkspace | |
!default.xcworkspace | |
xcuserdata | |
profile | |
*.moved-aside | |
DerivedData | |
.idea/ | |
*.hmap | |
#===============# | |
# Android | |
#===============# | |
# built application files | |
*.apk | |
*.ap_ | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class | |
# generated files | |
bin/ | |
gen/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Eclipse project files | |
.classpath | |
.project | |
#===============# | |
# Eclipse | |
#===============# | |
*.pydevproject | |
.project | |
.metadata | |
bin/** | |
tmp/** | |
tmp/**/* | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.classpath | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
#===============# | |
# CakePHP | |
#===============# | |
tmp/* | |
config/database.php | |
app/tmp/* | |
app/config/database.php | |
!empty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment