Reorganize gitignore file

So it's easier to follow.
This commit is contained in:
Javi Martín
2021-12-09 18:07:11 +01:00
parent fc70ba3db5
commit f487e9f0d0

43
.gitignore vendored
View File

@@ -4,32 +4,35 @@
# or operating system, you probably want to add a global ignore instead: # or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global' # git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config. # Confidential information
.bundle/
# Ignore all logfiles and tempfiles.
log/*
!log/.keep
tmp/
/spec/examples.txt
/config/database.yml /config/database.yml
/config/secrets.yml /config/secrets.yml
/config/deploy-secrets.yml /config/deploy-secrets.yml
/config/maintenance.yml /config/maintenance.yml
/coverage/ # Logfiles and tempfiles.
log/*
!log/.keep
tmp/
.byebug_history # Files attached by users
# Mac finder artifacts
.DS_Store
.ruby-gemset
/public/sitemap.xml
/public/assets/
/public/machine_learning/data/
/public/system/ /public/system/
/public/ckeditor_assets/ /public/ckeditor_assets/
/storage/ /storage/
# Files generated by scripts or compiled
/public/sitemap.xml
/public/assets/
/public/machine_learning/data/
# Bundler config, cache and gemsets
.bundle/
.ruby-gemset
# Files used in local development
.byebug_history
.DS_Store
# Test results
/spec/examples.txt
/coverage/