copy .gitignore from old sharedlists
This commit is contained in:
parent
b318469606
commit
16807381e5
1 changed files with 32 additions and 36 deletions
68
.gitignore
vendored
68
.gitignore
vendored
|
@ -1,40 +1,36 @@
|
||||||
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
.bundle
|
||||||
#
|
.rake_tasks*
|
||||||
# If you find yourself ignoring temporary files generated by your text editor
|
db/*.sqlite3
|
||||||
# or operating system, you probably want to add a global ignore instead:
|
log
|
||||||
# git config --global core.excludesfile '~/.gitignore_global'
|
node_modules
|
||||||
|
tmp/*
|
||||||
|
!tmp/.keep
|
||||||
|
public/assets
|
||||||
|
public/system
|
||||||
|
public/uploads
|
||||||
|
supplier_assets/**
|
||||||
|
vendor/bundle
|
||||||
|
|
||||||
# Ignore bundler config.
|
# no configuration
|
||||||
/.bundle
|
config/*.yml
|
||||||
|
|
||||||
# Ignore the default SQLite database.
|
# IDEs, Developer tools
|
||||||
/db/*.sqlite3
|
.idea
|
||||||
/db/*.sqlite3-*
|
.loadpath
|
||||||
|
.project
|
||||||
|
.sass-cache
|
||||||
|
.rbenv-version
|
||||||
|
.get-dump.yml
|
||||||
|
.bash_history
|
||||||
|
nbproject/
|
||||||
|
.*.sw?
|
||||||
|
*~
|
||||||
|
|
||||||
# Ignore all logfiles and tempfiles.
|
coverage
|
||||||
/log/*
|
tags
|
||||||
/tmp/*
|
|
||||||
!/log/.keep
|
|
||||||
!/tmp/.keep
|
|
||||||
|
|
||||||
# Ignore pidfiles, but keep the directory.
|
# Capistrano etc.
|
||||||
/tmp/pids/*
|
Capfile
|
||||||
!/tmp/pids/
|
config/deploy
|
||||||
!/tmp/pids/.keep
|
config/deploy.rb
|
||||||
|
Gemfile.capistrano*
|
||||||
# Ignore uploaded files in development.
|
|
||||||
/storage/*
|
|
||||||
!/storage/.keep
|
|
||||||
|
|
||||||
/public/assets
|
|
||||||
.byebug_history
|
|
||||||
|
|
||||||
# Ignore master key for decrypting credentials and more.
|
|
||||||
/config/master.key
|
|
||||||
|
|
||||||
/public/packs
|
|
||||||
/public/packs-test
|
|
||||||
/node_modules
|
|
||||||
/yarn-error.log
|
|
||||||
yarn-debug.log*
|
|
||||||
.yarn-integrity
|
|
||||||
|
|
Loading…
Reference in a new issue