Last active
December 27, 2024 21:00
-
-
Save oluyoung/e0983ad580ae33a97cb1655ccbcbb517 to your computer and use it in GitHub Desktop.
WP .gitignore
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 - ignore core, configuration, examples, uploads and logs. | |
| # https://github.com/github/gitignore/blob/main/WordPress.gitignore | |
| # Core | |
| # | |
| # Note: if you want to stage/commit WP core files | |
| # you can delete this whole section/until Configuration. | |
| /wp-admin/ | |
| /wp-includes/ | |
| /index.php | |
| /license.txt | |
| /readme.html | |
| /xmlrpc.php | |
| /wp-*.php | |
| .DS_Store | |
| .env | |
| # Uploads | |
| /wp-content/uploads/ | |
| # Log files | |
| *.log | |
| # htaccess | |
| /.htaccess | |
| # wp-content | |
| wp-content/themes/<theme>/node_modules # insert custom theme name here | |
| /wp-content/uploads/ | |
| /wp-content/cache/ | |
| /wp-content/languages/ | |
| /wp-content/boost-cache/ | |
| /wp-content/jetpack-waf/ | |
| /wp-content/updraft/ | |
| /wp-content/upgrade/ | |
| /wp-content/wpo-cache/ | |
| /wp-content/config-9e0f858-nitropack/ | |
| /wp-content/plugins/ | |
| /wp-content/themes/twenty*/ | |
| /wp-content/index.php | |
| /wp-content/languages | |
| /wp-content/plugins/index.php | |
| /wp-content/themes/index.php | |
| # All themes | |
| # | |
| # Note: If you wish to whitelist themes, | |
| # uncomment the next line | |
| #/wp-content/themes/ | |
| # All plugins | |
| # | |
| # Note: If you wish to whitelist plugins, | |
| # uncomment the next line | |
| #/wp-content/plugins | |
| # Others | |
| .DS_Store | |
| .env | |
| node_modules |
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 - ignore core, configuration, examples, uploads and logs. | |
| # https://github.com/github/gitignore/blob/main/WordPress.gitignore | |
| # Core | |
| # | |
| # Note: if you want to stage/commit WP core files | |
| # you can delete this whole section/until Configuration. | |
| /wp-admin/ | |
| /wp-content/index.php | |
| /wp-content/languages | |
| /wp-content/plugins/index.php | |
| /wp-content/themes/index.php | |
| /wp-includes/ | |
| /index.php | |
| /license.txt | |
| /readme.html | |
| /wp-*.php | |
| /xmlrpc.php | |
| .DS_Store | |
| .env | |
| wp-content/themes/<theme>/node_modules | |
| node_modules | |
| # Configuration | |
| wp-config.php | |
| # Example themes | |
| /wp-content/themes/twenty*/ | |
| # Example plugin | |
| /wp-content/plugins/hello.php | |
| /wp-content/uploads/ | |
| /wp-content/cache/ | |
| /wp-content/languages/ | |
| /wp-content/boost-cache/ | |
| /wp-content/jetpack-waf/ | |
| /wp-content/updraft/ | |
| /wp-content/upgrade/ | |
| /wp-content/wpo-cache/ | |
| /wp-content/config-9e0f858-nitropack/ | |
| /wp-content/plugins/ | |
| # Uploads | |
| /wp-content/uploads/ | |
| # Log files | |
| *.log | |
| # htaccess | |
| /.htaccess | |
| # All plugins | |
| # | |
| # Note: If you wish to whitelist plugins, | |
| # uncomment the next line | |
| #/wp-content/plugins | |
| # All themes | |
| # | |
| # Note: If you wish to whitelist themes, | |
| # uncomment the next line | |
| #/wp-content/themes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment