Last active
June 7, 2021 08:41
-
-
Save prestarocket/6190909883e084e77e32 to your computer and use it in GitHub Desktop.
Prestashop 1.6 gitignore
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
.buildpath | |
.project | |
.settings | |
.idea | |
.svn | |
.DS_Store | |
.sass-cache | |
config.codekit | |
*.sublime-project | |
*.sublime-workspace | |
/.htaccess | |
# Directories content | |
cache/class_index.php | |
cache/smarty/cache/* | |
!cache/smarty/cache/index.php | |
cache/smarty/compile/* | |
!cache/smarty/compile/index.php | |
cache/tcpdf/* | |
!cache/tcpdf/index.php | |
config/xml/*.xml | |
config/settings.inc.php | |
log/*.log | |
img/* | |
!img/index.php | |
!img/*/index.php | |
tools/smarty*/cache/*.php | |
!tools/smarty*/cache/index.php | |
tools/smarty*/compile/*.php | |
!tools/smarty*/compile/index.php | |
themes/*/cache/*.js | |
themes/*/cache/*.css | |
modules/*/config*.xml | |
# Ignore files on root directory | |
robots.txt | |
sitemap.xml |
Hi Andrea,
The images in this folder doesn't matter about your versioning.
This folder deal with images for CMS pages, blog articles, products, category img, ..
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, thanks for sharing. What's the reason behind
img/*
? How should be that folder managed?