From 42e48271e2d72a6267216e3db3672d80a66af870 Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 26 Nov 2024 05:05:24 +0000 Subject: [PATCH] chore: add uploads directory wildcard to .gitignore for exclusion The diff adds a new line `uploads/*` to the `.gitignore` file, ensuring all contents within the `uploads` directory are excluded from version control. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 64daf34..cbc5f81 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .history .venv -src/upload/__pycache__ \ No newline at end of file +src/upload/__pycache__ +uploads/* \ No newline at end of file