Skip to content

Instantly share code, notes, and snippets.

@joostvanveen
Last active April 10, 2019 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joostvanveen/0550a60e286dd3ec1e90 to your computer and use it in GitHub Desktop.
Save joostvanveen/0550a60e286dd3ec1e90 to your computer and use it in GitHub Desktop.
Default gitignore entrances for IDEs, OS specific hidden files, tarballs and compressed files. Use this for new projects.
############ Project specific rules ###############
# Project specific rules go here...
# To ignore a folder, add asterix -> folder/*
# This way, unignored files like .keep and .gitkeep will still be added to git
################# Global rules ####################
## Never ignore .gitignore
!.gitignore
## Dependencies
/node_modules
/bower_components
/vendor
/local.yml
.vagrant
*.swp
*.swo
## Sass
.sass-cache
## IDE project files
/.idea
/.viminfo
/.buildpath
/.settings
/.project
/.cache
/build
/nbbuild
/nbdist
/nbproject/private
/.vscode
## OS specific files
.DS_Store
.DS_Store?
Thumbs.db
.log
.sass-cache/
.codekit-config.json
._*
.Spotlight-V100
.Trashes
ehthumbs.db
*.swp
## Zipped files
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Always Version .keep and .gitkeep files
!.keep
!.gitkeep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment