From 227e543ad9a43cb618e215948a1db8f5f4010176 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 16 Aug 2025 15:03:00 +0300 Subject: [PATCH] Update .gitignore for venv and test artifacts Added rules to ignore virtual environment directories (venv, .venv) and test artifact files (*.test, *.tmp) to prevent them from being tracked in the repository. --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index e74c43c..c4a03a3 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,11 @@ dist/ # yt-dlp temporary/partial files *.part *.ytdl + +# Virtual environments +venv/ +.venv/ + +# Test artifacts +*.test +*.tmp