Created
April 6, 2016 14:53
-
-
Save benhuson/01d39018c15d213cdf8b11532e2df96d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# WordPress Project .gitignore | |
# Ignore system files | |
.DS_Store | |
# Ignore all files by default except `.gitignore` and `site` folder | |
/* | |
!/.gitignore | |
!/site/ | |
# Ignore all subfolders of `site` folder except `wp-content` | |
/site/* | |
!/site/wp-content | |
# Ignore all subfolders of `wp-content` folder except `themes`, `plugins` and `mu-plugins` | |
/site/wp-content/* | |
!/site/wp-content/themes | |
!/site/wp-content/plugins | |
!/site/wp-content/mu-plugins | |
# Ignore all theme folders apart for the one being managed | |
/site/wp-content/themes/* | |
!/site/wp-content/themes/{my-theme} | |
# Ignore all CSS files that will be dynamically generated from SASS files | |
site/wp-content/themes/{my-theme}/css/* | |
# Ignore all plugins apart from any custom ones | |
/site/wp-content/plugins/* | |
!/site/wp-content/plugins/{my-theme-plugin} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment