wpdevco
1/21/2017 - 12:04 AM

Sample WordPress .gitignore

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