.gitignore 946 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # See http://help.github.com/ignore-files/ for more about ignoring files.
  2. #
  3. # If you find yourself ignoring temporary files generated by your text editor
  4. # or operating system, you probably want to add a global ignore instead:
  5. # git config --global core.excludesfile ~/.gitignore_global
  6. # Ignore bundler config
  7. /.bundle
  8. # Ignore the default SQLite database.
  9. /db/*.sqlite3
  10. # Ignore local changes to schema.rb (e. g. through extentions)
  11. /db/schema.rb
  12. # Ignore all logfiles and tempfiles.
  13. /log
  14. /tmp/*
  15. /tmp/pids/*
  16. /public/assets/*.*
  17. /public/assets/app
  18. /public/assets/custom
  19. # except /tmp/pids/ which is needed for certain Zammad processes
  20. !/tmp
  21. !/tmp/pids
  22. !/tmp/pids/.keep
  23. # Ignore custom gem file
  24. /Gemfile.local
  25. # Ignore .project files
  26. /.project
  27. # Ignore local database settings
  28. /config/database.yml
  29. # Ignore mac stuff
  30. .DS_Store
  31. # Ignore .swp files
  32. .*.swp
  33. # Ignore coverage stuff
  34. /coverage
  35. # Ignore Rubymine config
  36. /.idea
  37. node_modules