From ef4f97d5442075faefa8a6986fc2357292c59d30 Mon Sep 17 00:00:00 2001 From: Yandrik Date: Mon, 5 Feb 2024 09:48:19 +0100 Subject: [PATCH] Update .gitignore file to include new patterns The .gitignore file has been updated to include two new ignore patterns. These alterations help to ignore all 'out.' files with any extension and any file with '.old.' in its name. This ensures that temporary or backup files do not get included in the repo unintentionally. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bc1d57d..f308912 100644 --- a/.gitignore +++ b/.gitignore @@ -8,5 +8,6 @@ apikey.secret *.PNG out.md -out.old.md +out.*.md +*.old.* /__pycache__ \ No newline at end of file