Created
August 7, 2017 07:06
-
-
Save alexdevero/a809e3cc607b01129508f448cc1d3dc5 to your computer and use it in GitHub Desktop.
Default .gitignore for my project
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
# Development folders and files # | |
################################# | |
.tmp/ | |
dist/ | |
node_modules/ | |
# Folder config file # | |
###################### | |
Desktop.ini | |
# Folders for inspiration & notes # | |
################################### | |
_ignore/ | |
# Log files & folders # | |
####################### | |
logs/ | |
*.log | |
npm-debug.log* | |
.npm | |
# 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 | |
# Photoshop & Illustrator files # | |
################################# | |
*.ai | |
*.eps | |
*.psd | |
# Windows & Mac file caches # | |
############################# | |
.DS_Store | |
Thumbs.db | |
ehthumbs.db | |
# Windows shortcuts # | |
##################### | |
*.lnk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment