Advertisement
drdanielfc

wordpress gitignore

Jul 22nd, 2019
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # If you make changes, update this file at https://pastebin.com/a5gDjvUE
  2.  
  3. # ignore everything in the root except the "wp-content" directory.
  4. /*
  5. !wp-content/
  6. !.gitignore
  7.  
  8. # ignore everything in the "wp-content" directory, except:
  9. # "plugins", "themes" directory
  10. wp-content/*
  11. !wp-content/plugins/
  12. !wp-content/themes/
  13.  
  14. # ignore node dependency directories
  15. node_modules/
  16.  
  17. # ignore log files and databases
  18. *.log
  19. *.sql
  20. *.sqlite
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement