Skip to content

Instantly share code, notes, and snippets.

@markbain
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save markbain/b41e14fc9fc40f578a6d to your computer and use it in GitHub Desktop.

Select an option

Save markbain/b41e14fc9fc40f578a6d to your computer and use it in GitHub Desktop.
My sample .gitignore
# =========================
# Various
# =========================
node_modules
bower_components
.sass-cache
import
export
scripts
# =========================
# VIM Temp Files
# =========================
*~
*.swp
# =========================
# WordPress
# =========================
*.log
# Ignore everything in the "httpdocs" directory except the "wp-content" directory.
httpdocs/*
!httpdocs/wp-content/
# Ignore everything in the "wp-content" directory, except the "plugins"
# and "themes" directories.
httpdocs/wp-content/*
!httpdocs/wp-content/plugins/
!httpdocs/wp-content/themes/
!httpdocs/wp-content/mu-plugins/
# Ignore everything in the "plugins" directory, except the plugins you
# specify (see the commented-out examples for hints on how to do this.)
httpdocs/wp-content/plugins/*
# !httpdocs/wp-content/plugins/my-single-file-plugin.php
# !httpdocs/wp-content/plugins/my-directory-plugin/
# Ignore everything in the "mu-plugins" directory, except the mu-plugins you
# specify (see the commented-out examples for hints on how to do this.)
httpdocs/wp-content/mu-plugins/*
# !httpdocs/wp-content/mu-plugins/my-single-file-plugin.php
# !httpdocs/wp-content/mu-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.)
httpdocs/wp-content/themes/*
# !httpdocs/wp-content/themes/my-theme/
# =========================
# Operating System Files
# =========================
# Windows
# =========================
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
*.map
# Misc
*.zip
*.tar
*.gz
*.sql
*.sublime-workspace

#My sample .gitignore#

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment