Last active
October 29, 2017 17:31
-
-
Save Sorbog/12f980a60e863f27e379139556d83c74 to your computer and use it in GitHub Desktop.
Magento 2 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
# ignore all | |
/* | |
# whitelist distinct spaces | |
!/.gitignore | |
!/composer.json | |
!/composer.lock | |
!/README.md | |
# local code pool | |
!/app | |
/app/* | |
!/app/code | |
# project configuration templates | |
!/app/etc | |
/app/etc/* | |
!/app/etc/*.env.php | |
!/app/etc/*config.php | |
# Gorilla design pools | |
!/app/design | |
/app/design/* | |
!/app/design/frontend | |
!/app/design/adminhtml | |
# Error directories | |
!/pub | |
/pub/* | |
!/pub/errors/ | |
/pub/errors/* | |
!/pub/errors/local.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment