Skip to content

Instantly share code, notes, and snippets.

@karrikas
Last active December 20, 2016 10:00
Show Gist options
  • Save karrikas/1b4d8a15a7d6d686dd8b to your computer and use it in GitHub Desktop.
Save karrikas/1b4d8a15a7d6d686dd8b to your computer and use it in GitHub Desktop.
Gitignore for wordpress project
# Ignore everything in the root except the "wp-content" directory.
/*
!.gitignore
!wp-content/
!build.xml
!build_rsync_exclude
# 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-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