Created
January 13, 2017 00:47
-
-
Save uxjw/dde116be3453db179f33489dbff94464 to your computer and use it in GitHub Desktop.
Wordpress git ignores
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
# OPERATING SYSTEMS | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
._* | |
*.lock | |
.Spotlight-V100 | |
.Trashes | |
.svn | |
Thumbs.db | |
# CLIENT APP FILES | |
config.codekit | |
sftp-config.json | |
.BridgeCache | |
.BridgeCacheT | |
.sass-cache | |
.sass-cache-imports | |
.codekit-cache | |
bower_components | |
composer.lock | |
/vendor | |
# TEMP FILES | |
*PendingImageDownloads*.jpeg | |
*cache* | |
*.log | |
error_log | |
public/*.sql | |
# WORDPRESS | |
# Most things are ignored so add back anything critical in the next section | |
!.gitignore | |
public/* | |
!public/.htaccess | |
# override in wp-config-local | |
!public/wp-config.php | |
!public/wp-content/ | |
public/wp-content/* | |
!public/wp-content/plugins/ | |
!public/wp-content/mu-plugins/ | |
!public/wp-content/themes/ | |
public/wp-content/themes/twenty* | |
public/wordfence-waf.php | |
# SITE-SPECIFIC (INCLUDE ANYTHING CRITICAL TO THIS SITE) | |
# eg. | |
# !public/wp-content/variations |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment