diff options
author | Niklas Johansson <raphexion@gmail.com> | 2018-10-31 19:30:18 +0100 |
---|---|---|
committer | Niklas Johansson <raphexion@gmail.com> | 2018-10-31 19:30:18 +0100 |
commit | f0826929de675d04f8cb81afa0f3e7a879984446 (patch) | |
tree | 3a08ce5eb2087354541a20161f3c7f071dd34eb5 | |
parent | 0f6f1630176da37af5971a6fa51f57c0733f949d (diff) |
templates/gitignore ignore emacs temp files
emacs creates temp files that ends with tilde (~).
These temp files should never be commited.
It is therefore safe to ignore them.
Signed-off-by: Niklas Johansson <raphexion@gmail.com>
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | priv/templates/gitignore | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -140,3 +140,4 @@ Heinz N. Gies Roberto Aloi Andrew McRobb Drew Varner +Niklas Johansson diff --git a/priv/templates/gitignore b/priv/templates/gitignore index 40ca652..f1c4554 100644 --- a/priv/templates/gitignore +++ b/priv/templates/gitignore @@ -16,3 +16,4 @@ _build .idea *.iml rebar3.crashdump +*~ |