Created
November 15, 2018 09:56
-
-
Save janzikmund/e26c1810dca8a89c97210c607279f809 to your computer and use it in GitHub Desktop.
Magento .gitignore ignoring everything except theme and skin
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
# Ignore everything | |
# Only keep child theme and skin | |
# has to be written in this stupid way for git to handle ignores in subdirectories correctly | |
# ignore all | |
/* | |
#keep gitignore | |
!/.gitignore | |
# theme | |
!/app | |
/app/* | |
!/app/design | |
/app/design/* | |
!/app/design/frontend | |
/app/design/frontend/* | |
!/app/design/frontend/aloalto | |
/app/design/frontend/aloalto/* | |
!/app/design/frontend/aloalto/watchpartners | |
#skin | |
!/skin | |
/skin/* | |
!/skin/frontend | |
/skin/frontend/* | |
!/skin/frontend/aloalto | |
/skin/frontend/aloalto/* | |
!/skin/frontend/aloalto/watchpartners |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment