Last active
May 10, 2021 22:42
-
-
Save dfelton/bfe893f7a2ad2f7e2841ca61ae0d5aa4 to your computer and use it in GitHub Desktop.
.gitignore for Magento 1.9 projects
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
## | |
# Magento stuff. | |
## | |
downloader/.cache/* | |
downloader/cache.cfg | |
downloader/connect.cfg | |
maintenance.flag | |
media/* | |
media/** | |
var/* | |
!var/.htaccess | |
## | |
# Misc | |
## | |
phpinfo.php | |
temp | |
## | |
# Eclipse IDE | |
## | |
.buildpath | |
.settings/ | |
.project | |
## | |
# Dreamweaver IDE | |
## | |
_mm | |
_notes | |
*.LCK | |
## | |
# Mac OS junk | |
## | |
.DS_Store | |
## | |
# Windows OS junk | |
## | |
Thumbs.db | |
## | |
# Ultimate_ModuleCreator | |
# https://github.com/tzyganu/UMC1.9 | |
# | |
# Ignore entire extension. This extension is appropriate to exist on | |
# development environment, not so much on production. | |
## | |
ultimate_modulecreator* | |
Ultimate_ModuleCreator* | |
app/code/community/Ultimate | |
## | |
# Larger files we typically don't want to store in a git repo | |
## | |
# Photoshop | |
*.psd | |
# Video Files | |
*.wmv | |
*.mpg | |
*.mpeg | |
*.mp4 | |
*.mov | |
*.flv | |
*.avi | |
*.ogv | |
*.ogg | |
*.webm | |
# Audio Files | |
*.mp3 | |
*.mp4 | |
*.flac | |
*.wma | |
*.wav | |
*.ra | |
*.ram | |
*.rm | |
*.mid | |
*.ogg | |
# Archive files | |
*.tgz | |
*.tar | |
*.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment