Created
August 9, 2016 16:54
-
-
Save noinarisak/fba89383a7f46487bf34272f867d5a45 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
# Thanks to: https://gist.github.com/jdbartlett/444295 | |
# ref blog: https://marcjenkins.co.uk/a-wordpress-git-workflow/ | |
# Ignore everything in the root except the "wp-content" directory. | |
/* | |
!.gitignore | |
!wp-content/ | |
# Ignore everything in the "wp-content" directory, except the "plugins" and "themes" directories. | |
wp-content/* | |
!wp-content/plugins/ | |
!wp-content/themes/ | |
# Ignore everything in the "plugins" directory, except the plugins you specify | |
wp-content/plugins/* | |
# !wp-content/plugins/my-single-file-plugin.php | |
# !wp-content/plugins/my-directory-plugin/ | |
# Ignore everything in the "themes" directory, except the themes you specify | |
wp-content/themes/* | |
!wp-content/themes/my-theme/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment