From d93c0a86bce426be0b1e276e0664aaf908402621 Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 23 Jul 2024 08:54:35 +0200 Subject: [PATCH] chore: update .gitignore to ignore build artifacts and venv Renamed .hugo-build.lock to .hugo_build.lock to match actual file naming. Added venv/ to ignore list to prevent virtual environment files from being tracked, avoiding unnecessary clutter in the repository. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2caa929..0c06b83 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store public/ resources/ -.hugo-build.lock \ No newline at end of file +.hugo_build.lock +venv/ \ No newline at end of file