From 7492eeaea77bc3fac7dbf17b04c241d67de73c73 Mon Sep 17 00:00:00 2001 From: thoralmighty Date: Mon, 24 Jul 2023 17:16:14 +0200 Subject: [PATCH] Updated gitignore to ignore .env and include itself --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6e1316b --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# ignore everything +* + +# don't ignore dirs so we can look inside them +!*/ + +# but do ignore volumes and subsubdirs +volumes/ +*/*/ + +# only allow .yml files +!*.yml + +!*.md +!.gitignore +.env