Skip to content

Instantly share code, notes, and snippets.

@lelandsmith
Created March 13, 2014 20:55
Show Gist options
  • Save lelandsmith/9536827 to your computer and use it in GitHub Desktop.
Save lelandsmith/9536827 to your computer and use it in GitHub Desktop.
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your
# content. Or see git's documentation for more info on .gitignore files:
# http://kernel.org/pub/software/scm/git/docs/gitignore.html
############################################################################
# APPLICATION #
############################################################################
# Only plugins And Themes In The Content Directory
wp-content/*
!wp-content/plugins/
!wp-content/themes/
# Omit Central Extracted Configuration File
app-includes/php/app-wordpress-ini.php
############################################################################
# Packages #
############################################################################
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
############################################################################
# Logs and databases #
############################################################################
*.log
*.sql
############################################################################
# OS generated files #
############################################################################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db
_notes/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment