2019-12-19 16:04:12 -07:00
|
|
|
# ignore everything in the root except the "wp-content" directory.
|
|
|
|
!wp-content/
|
|
|
|
|
|
|
|
# ignore everything in the "wp-content" directory, except:
|
|
|
|
# "mu-plugins", "plugins", "themes" directory
|
|
|
|
wp-content/*
|
|
|
|
!wp-content/mu-plugins/
|
|
|
|
!wp-content/plugins/
|
|
|
|
!wp-content/themes/
|
|
|
|
|
|
|
|
# ignore these plugins
|
2015-08-28 02:44:04 -06:00
|
|
|
wp-content/plugins/hello.php
|
|
|
|
|
2019-12-19 16:04:12 -07:00
|
|
|
# ignore specific themes
|
|
|
|
wp-content/themes/twenty*/
|
2015-08-28 02:44:04 -06:00
|
|
|
|
2019-12-19 16:04:12 -07:00
|
|
|
# ignore node dependency directories
|
|
|
|
node_modules/
|
|
|
|
|
|
|
|
# ignore log files and databases
|
|
|
|
*.log
|
|
|
|
*.sql
|
|
|
|
*.sqlite
|