From d76dc553250234b486629e10389fcef220ea9a0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 15 Jul 2025 12:30:04 +0200 Subject: [PATCH] add images to gitignore images now needed to be added with `git add --force`. This makes accidential commits of large files harder. --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index eee451745..7e60f97d6 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,13 @@ pkgs/clan-app/ui/api/Inventory.ts pkgs/clan-app/ui/api/modules_schemas.json pkgs/clan-app/ui/api/schema.json pkgs/clan-app/ui/.fonts + +# To avoid accidentally committing large files +# Can be added with `git add -f` after reviewing the filesize +# Large files should be avoided or stored externally i.e. a gitea release +*.jpg +*.png +*.jpeg +*.gif +*.mp4 +*.mkv