Ignore everything but what we want.
# Ignore everything...
/*
# Except what we want...
!.gitignore
!.editorconfig
!.gitattributes
!README.md
!CHANGELOG.md
!wp-content/
# Ignore everything in /wp-content/, except what we want...
wp-content/*
!wp-content/plugins/
!wp-content/themes/
# Ignore everything in /plugins/, except the plugins we want...
wp-content/plugins/*
!wp-content/plugins/my-plugin/
# Ignore everything in /themes/, except the themes we want...
wp-content/themes/*
!wp-content/themes/my-theme/
# Ignore other stuff...
**/.DS_Store
**/node_modules
**.log