Last active
October 8, 2015 14:07
-
-
Save b1/3342584 to your computer and use it in GitHub Desktop.
.gitignore for all kind of progects
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
# Numerous always-ignore extensions | |
*.diff | |
*.err | |
*.orig | |
*.log | |
*.rej | |
*.swo | |
*.swp | |
*.zip | |
*.vi | |
*~ | |
*.sass-cache | |
*.elc | |
# Python bytecode: | |
*.py[co] | |
*~ | |
~* | |
# Packaging files: | |
*.egg* | |
# Sphinx docs: | |
build | |
# SQLite3 database files: | |
*.db | |
*.sqlite3 | |
*.sqlite3-journal | |
# OS or Editor folders | |
.DS_Store | |
._* | |
Thumbs.db | |
.cache | |
.project | |
.settings | |
.tmproj | |
*.esproj | |
nbproject | |
*.sublime-project | |
*.sublime-workspace | |
*.kate-swp | |
.directory | |
.idea | |
# cvs dirs | |
.hg | |
.svn | |
.CVS | |
.git | |
# environment vars file | |
.env | |
node_modules | |
bower_components | |
.coverage | |
coverage.xml | |
*/assets/* | |
*/media/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment