bgallagh3r
8/23/2013 - 3:32 PM

Global Gitignore for my Dev Environment. Stuff that doesn't need to be in my per-project .gitignore ever.

Global Gitignore for my Dev Environment. Stuff that doesn't need to be in my per-project .gitignore ever.

# Use in home dir.
# use git config --global core.excludesfile "%USERPROFILE%\.gitignore" 
# or git config --global core.excludesfile "~\.gitignore"
# Global Scope to ignore NON-project based files.

# WordPress
.htaccess
wp-config.php
wp-content/uploads/
wp-content/blogs.dir/
wp-content/upgrade/
wp-content/backup-db/
wp-content/advanced-cache.php
wp-content/wp-cache-config.php
sitemap.xml
*.log
wp-content/cache/
wp-content/backups/
sitemap.xml.gz

# Sublime Text
*.sublime-project
*.sublime-workspace


# Hidden Folders
.DS_Store
.svn
.hg

# Dreamweaver
dwsync.xml

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# PHP Storm
.idea/

# Sass
*.sass-cache