From aed5367c3384c5592511b8eadf366c96b3237473 Mon Sep 17 00:00:00 2001 From: iirina Date: Mon, 1 Jul 2019 13:42:57 +0200 Subject: [PATCH 1/2] Add .gitignore. --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..24956f6b --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Ignore backup files. +*~ +# Ignore Vim swap files. +.*.swp +# Ignore files generated by IDEs. +/.classpath +/.factorypath +/.idea/ +/.ijwb/ +/.project +/.settings +# Ignore all bazel-* symlinks. There is no full list since this can change +# based on the name of the directory bazel is cloned into. +/bazel-* +# Ignore outputs generated during Bazel bootstrapping. +/output/ From 8eb9bbf8e479f6cba852543f9f80f886d6ee5dde Mon Sep 17 00:00:00 2001 From: iirina Date: Tue, 2 Jul 2019 09:38:41 +0200 Subject: [PATCH 2/2] Ignore jekyll build output. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 24956f6b..ef436251 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,6 @@ /bazel-* # Ignore outputs generated during Bazel bootstrapping. /output/ +# Ignore jekyll build output. +/production +/.sass-cache