Created
July 1, 2011 03:35
-
-
Save curtisblackwell/1057820 to your computer and use it in GitHub Desktop.
Above root .gitignore for developing ExpressionEngine sites on a Mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## OS X GENERATED FILES | |
.DS_Store | |
Icon | |
Icon? | |
Thumbs.db | |
._* | |
.Spotlight-V100 | |
.Trashes | |
## MISCELLANEOUS | |
*.ai | |
*.psd | |
*/ai-cache/* | |
*.sublime-workspace | |
.c9settings.xml | |
# Numerous always-ignore extensions | |
*.diff | |
*.err | |
*.orig | |
*.log | |
*.rej | |
*.swo | |
*.swp | |
*.vi | |
*~ | |
*.sass-cache | |
# OS or Editor folders | |
.DS_Store | |
Thumbs.db | |
.cache | |
.project | |
.settings | |
.tmproj | |
*.esproj | |
nbproject | |
*.sublime-project | |
*.sublime-workspace | |
# Folders to ignore | |
.hg | |
.svn | |
.CVS | |
intermediate | |
publish | |
.idea | |
# build script local files | |
build/buildinfo.properties | |
build/config/buildinfo.properties | |
## EXPRESSIONENGINE DIRS | |
# This assumes your system folder is above the root. | |
# To simplify updates/rollbacks, I append '_OLD' to my system and themes folders, | |
# but I don't want to track that business. | |
# | |
# I keep another .gitignore in public_html/ from | |
# HTML5 Boilerplate (https://github.com/paulirish/html5-boilerplate/blob/master/.gitignore) | |
*_OLD/ | |
_cb_system/expressionengine/templates/ | |
_cb_system/expressionengine/third_party | |
*/expressionengine/cache/* | |
public_html/themes/cp_themes/corporate/ | |
public_html/themes/site_themes/ | |
images/avatars/ | |
images/captchas/ | |
images/member_photos/ | |
images/pm_attachments/ | |
images/signature_attachments/ | |
images/smileys/ | |
sized/ | |
thumbs/ | |
_thumbs/ | |
## ROOT DIRS | |
public_html/_addon_domains/ | |
public_html/_archive/ | |
public_html/_software/ | |
public_html/_subdomains/ | |
public_html/_test/ | |
public_html/_utility/ | |
public_html/download/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment