From e4bb9d5b67b2c0ff222a6ce1d22edad6c5844cd5 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Wed, 23 Apr 2025 10:14:35 +0200 Subject: [PATCH] Adds .gitignore file to exclude local environment files Excludes `.locale/` and `.history/` directories to prevent local environment and history files from being tracked in version control. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2baa0a9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.locale/ +.history/ \ No newline at end of file