Created
March 30, 2017 23:58
-
-
Save lstanard/06ea6313b91075e51c332b78352db03f to your computer and use it in GitHub Desktop.
Default Bokka WordPress .gitignore file
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
# WordPress # | |
############ | |
# patternlab-php-master/ | |
# wp-config-local.php | |
# wp-content/uploads | |
# wp-content/plugins/debug-log.php | |
# wp-content/blogs.dir/ | |
# wp-config.php | |
# wp-content/upgrade/ | |
# wp-content/backup-db/ | |
# wp-content/object-cache.php | |
# wp-content/advanced-cache.php | |
# wp-content/wp-cache-config.php | |
# wp-content/cache | |
# wp-content/ewww | |
# sitemap.xml | |
# sitemap.xml.gz | |
*.log | |
# ignore everything in the root except the "wp-content" directory. | |
/* | |
!wp-content/ | |
wp-content/* | |
wp-content/themes/index.php | |
wp-content/themes/bokka-wp-theme | |
!wp-content/themes/ | |
# ignore all files starting with . | |
.* | |
# track this file .gitignore (i.e. do NOT ignore it) | |
!.gitignore | |
# IDE # | |
####### | |
.idea/ | |
# Build Artifacts # | |
################### | |
build/ | |
vendor/ | |
# Interconnectit Search & Replace | |
# https://interconnectit.com/products/search-and-replace-for-wordpress-databases/ | |
replace/* | |
# wpengine specific | |
.smushit-status | |
.gitattributes | |
_wpeprivate | |
configseparator.php. | |
# @TODO writable paths | |
wp-content/cache/ | |
wp-content/backups/ | |
# Packages # | |
############ | |
*.7z | |
*.dmg | |
*.gz | |
*.bz2 | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
*.tgz | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
# OS generated files # | |
###################### | |
.DS_Store* | |
ehthumbs.db | |
# Icon? | |
Thumbs.db | |
._* | |
# Vim generated files # | |
###################### | |
*.un~ | |
# IDE generated files # | |
###################### | |
*.idea/* | |
.floo | |
.flooignore | |
# SASS, NPM, GULP # | |
########## | |
.sass-cache | |
node_modules | |
.css.map | |
# large/disallowed file types | |
# a CDN should be used for these | |
*.hqx | |
*.bin | |
*.exe | |
*.dll | |
*.deb | |
*.dmg | |
*.iso | |
*.img | |
*.msi | |
*.msp | |
*.msm | |
*.mid | |
*.midi | |
*.kar | |
*.mp3 | |
*.ogg | |
*.m4a | |
*.ra | |
*.3gpp | |
*.3gp | |
*.mp4 | |
*.mpeg | |
*.mpg | |
*.mov | |
*.webm | |
*.flv | |
*.m4v | |
*.mng | |
*.asx | |
*.asf | |
*.wmv | |
*.avi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment