Skip to content

Instantly share code, notes, and snippets.

@ajeebkp23
Last active December 11, 2015 13:48
Show Gist options
  • Save ajeebkp23/de5cf61a0395e436c2dd to your computer and use it in GitHub Desktop.
Save ajeebkp23/de5cf61a0395e436c2dd to your computer and use it in GitHub Desktop.
Wordpress gitignore sample
# Thanks to https://marcjenkins.co.uk/2014/06/a-wordpress-git-workflow/
# Thanks to: https://gist.github.com/jdbartlett/444295
# Ignore everything in the root except the "wp-content" directory.
# you may deal with wp-core yourself or visit http://wp-cli.org
/*
# !.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