From ca039e602d02898c3dd3b6316275698537b4c06d Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Sat, 8 Jul 2017 15:48:59 +0300 Subject: [PATCH] Updates Elixir gitignore file Official `elixir`'s `gitignore` after running `mix new` contains these two lines: > # Where 3rd-party dependencies like ExDoc output generated docs. > /doc > # Ignore .fetch files in case you like to edit your project deps locally. > /.fetch They are missing at the moment. --- Elixir.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Elixir.gitignore b/Elixir.gitignore index ac67aaf3..b6d65867 100644 --- a/Elixir.gitignore +++ b/Elixir.gitignore @@ -1,6 +1,8 @@ /_build /cover /deps +/doc +/.fetch erl_crash.dump *.ez *.beam