Created
October 23, 2020 17:34
-
-
Save tieutantan/d0a666dc8d75e3639a85c08e2ec089b9 to your computer and use it in GitHub Desktop.
Git ignore for Shopify
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
# Shopify | |
/config | |
config.yml | |
# This file contains a list of files and folders to be ignored when | |
# committing to a git repository. Ignored files are both Slate project | |
# specific files as well as commonly ignored files on any project. | |
# For more information on this .gitignore files, see GitHub's | |
# documentation: https://help.github.com/articles/ignoring-files/ | |
# Project # | |
################### | |
node_modules | |
dist | |
upload | |
deploy.log | |
config/shopify.yml | |
npm-debug.log | |
.env | |
.env.* | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # | |
############ | |
# it's better to unpack these files and commit the raw source | |
# git has its own built in compression methods | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
*.sqlite | |
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# Custom # | |
###################### | |
*.sass-cache* | |
.cache/* | |
_site | |
/.idea | |
/.vscode | |
secrets.json | |
.jekyll-metadata | |
.ruby-version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment