Skip to content

Instantly share code, notes, and snippets.

@jonathanjanssens
Forked from redoPop/.gitignore
Last active July 5, 2016 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathanjanssens/4b58eefb44481ab8f1b792730e4c9deb to your computer and use it in GitHub Desktop.
Save jonathanjanssens/4b58eefb44481ab8f1b792730e4c9deb to your computer and use it in GitHub Desktop.
Template .gitignore file for WordPress projects
# Originally from https://gist.github.com/redoPop/444295
# Ignore everything in the root except the "wp-content" directory.
/*
!.gitignore
!wp-content/
# Ignore everything in the "wp-content" directory, except the "plugins",
# "mu-plugins" and "themes" directories.
wp-content/*
!wp-content/plugins/
!wp-content/mu-plugins/
!wp-content/themes/
# Ignore everything in the "plugins" directory, except the plugins you
# specify (see the commented-out examples for hints on how to do this.)
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 (see the commented-out example for a hint on how to do this.)
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