djekl
7/12/2013 - 10:03 AM

Default .gitignore used to start projects

Default .gitignore used to start projects






########################################
###   SOME SENSIBLE DEFAULTS BELOW   ###
# https://github.com/github/gitignore  #
########################################

##############################
### CodeIgntiter ###

*/config/development
*/logs/log-*.php
*/logs/!index.html
*/cache/*
*/cache/!index.html

### /END CodeIgniter ###
##############################


##############################
### OSX ###

.DS_Store
.AppleDouble
.LSOverride
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

### /END OSX ###
##############################


##############################
### WIN ##

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

### /END WIN ###
##############################


##############################
### SVN ###

.svn/

### /END SVN ###
##############################


##########################################
###         KEEP THE FOLLOWING         ###

!.gitkeep
!.htaccess
!index.html

##########################################