diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-04 10:12:41 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-04 10:12:41 -0600 |
| commit | eb5c0deaf546834e1a46d258f8c7bddd7f21508f (patch) | |
| tree | d6ca969f6253254ea546098f540d74c0bbb8e41e /course/.gitignore | |
| parent | 204272cc48e51363827b7a5b3df0d89c139301be (diff) | |
rails new course
Diffstat (limited to 'course/.gitignore')
| -rw-r--r-- | course/.gitignore | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/course/.gitignore b/course/.gitignore new file mode 100644 index 0000000..3695041 --- /dev/null +++ b/course/.gitignore @@ -0,0 +1,29 @@ +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +# +# 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 bundler config. +/.bundle + +# Ignore the default SQLite database. +/db/*.sqlite3 +/db/*.sqlite3-journal +/db/*.sqlite3-* + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep + +# Ignore uploaded files in development. +/storage/* +!/storage/.keep + +/public/assets +.byebug_history + +# Ignore master key for decrypting credentials and more. +/config/master.key |
