Last active
December 11, 2015 20:18
-
-
Save ysawa/4654300 to your computer and use it in GitHub Desktop.
.gitignore often used.
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
/Gemfile.lock | |
# Ignore bundler config | |
/.bundle | |
# Ignore configuration files | |
/config/*.yml | |
/config/unicorn.rb | |
/config/deploy.rb | |
/db/*.sqlite3 | |
# Ignore all logfiles and tempfiles. | |
/log/*.log | |
tmp/ | |
.sass-cache/ | |
.DS_Store | |
Thumbs.db | |
*.orig | |
*.swp | |
*.swo | |
pkg | |
.rvmrc | |
/vendor/cache | |
/.jhw-cache | |
.htpasswd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment