Skip to content

Instantly share code, notes, and snippets.

@ckoulatsi
Last active April 20, 2020 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckoulatsi/04e5bbe52aa357f88fa5c404ce345677 to your computer and use it in GitHub Desktop.
Save ckoulatsi/04e5bbe52aa357f88fa5c404ce345677 to your computer and use it in GitHub Desktop.
[.gitignore for WP] #git #wp
# 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
wp-content/plugins/hello.php
# ignore specific themes
wp-content/themes/twenty*/
# ignore node dependency directories
node_modules/
# ignore log files and databases
*.log
*.sql
*.sqlite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment