Created
November 2, 2020 13:43
-
-
Save bmarshall511/c049ac49384d59147fc125bc416a8bec to your computer and use it in GitHub Desktop.
WordPress Development .gitignore Example
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
# unneccesry files | |
wflogs | |
package-lock.json | |
wp-content/db/ | |
wp-content/cache/ | |
wp-content/backups/ | |
# WordPress # | |
############ | |
wp-config-local.php | |
wp-content/uploads/ | |
sitemap.xml | |
sitemap.xml.gz | |
# npm & bower | |
wp-content/themes/**/node_modules | |
wp-content/themes/**/package-lock.json | |
wp-content/themes/**/composer.lock | |
wp-content/themes/**/bower_components | |
wp-content/themes/**/bower.json | |
wp-content/themes/**/assets/manifest.json | |
# Packages # | |
############ | |
*.7z | |
*.dmg | |
*.gz | |
*.bz2 | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
*.tgz | |
!wp-includes/**/*.gz | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
# OS generated files # | |
###################### | |
.DS_Store* | |
ehthumbs.db | |
Thumbs.db | |
._* | |
# Vim generated files # | |
###################### | |
*.un~ | |
# SASS # | |
########## | |
.sass-cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment