Last active
December 29, 2015 10:19
-
-
Save mschultheiss83/7656466 to your computer and use it in GitHub Desktop.
Magento gitignore
This file contains hidden or 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
# configs | |
/app/etc/local.xml | |
/errors/local.xml | |
/app/etc/use_cache.ser | |
# downloader | |
/downloader/.cache | |
/downloader/cache.cfg | |
/downloader/connect.cfg | |
# media (all or tmp/cache) | |
/media/* | |
# /media/tmp/* | |
# /media/catalog/product/cache | |
# var | |
/var/* | |
!/var/.htaccess | |
# misc | |
/sitemap.xml | |
# Magento stuff | |
/install.php | |
/LICENSE* | |
/php.ini.sample | |
/pkginfo/ | |
/RELEASE_NOTES.txt | |
# IDE & OS files that should never be committed | |
.DS_Store | |
*.swp | |
*.lock | |
__MACOSX | |
.idea | |
/nbproject/* | |
.project | |
.buildpath | |
.thumbs | |
Thumbs.db | |
build.properties | |
.project | |
.settings | |
.buildpath | |
/_notes/* | |
# Explicitly mark as "do not exclude/ignore these from GIT repository" | |
!app/.htaccess | |
!downloader/.htaccess | |
!downloader/template/.htaccess | |
!errors/.htaccess | |
!includes/.htaccess | |
!lib/.htaccess | |
!media/.htaccess | |
!media/customer/.htaccess | |
!media/downloadable/.htaccess | |
!pkginfo/.htaccess | |
!var/.htaccess | |
!var/package/ | |
# add custom here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment