Skip to content

Instantly share code, notes, and snippets.

@pirafrank
Last active August 29, 2015 14:14
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 pirafrank/7c7303c039e2fa8df529 to your computer and use it in GitHub Desktop.
Save pirafrank/7c7303c039e2fa8df529 to your computer and use it in GitHub Desktop.
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Based on https://gist.github.com/chrishough/6488118
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global
###############################################################################################
# Ignore specific config files
###############################################################################################
.bundle/*
!.bundle/config
config/application.yml
###############################################################################################
# Ignore all logfiles and tempfiles.
###############################################################################################
/log/*.log
/tmp
###############################################################################################
# Ignore application configurations
###############################################################################################
.chef
.vagrant
###############################################################################################
# Ignore local asset pipline cache files
###############################################################################################
/public/assets
###############################################################################################
# APPLICATION #
###############################################################################################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.psd
*.ai
*.ase
###############################################################################################
# Packages #
###############################################################################################
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
###############################################################################################
# Logs and databases #
###############################################################################################
*.log
*.sql
*.sqlite
###############################################################################################
# OS generated files #
###############################################################################################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment