You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WordPress 477B

1234567891011121314151617181920212223
  1. # ignore everything in the root except the "wp-content" directory.
  2. !wp-content/
  3. # ignore everything in the "wp-content" directory, except:
  4. # "mu-plugins", "plugins", "themes" directory
  5. wp-content/*
  6. !wp-content/mu-plugins/
  7. !wp-content/plugins/
  8. !wp-content/themes/
  9. # ignore these plugins
  10. wp-content/plugins/hello.php
  11. # ignore specific themes
  12. wp-content/themes/twenty*/
  13. # ignore node dependency directories
  14. node_modules/
  15. # ignore log files and databases
  16. *.log
  17. *.sql
  18. *.sqlite