From 4249c3f94658c9e2dffd475db149e1af4fa9e826 Mon Sep 17 00:00:00 2001 From: shaswatcodes Date: Wed, 12 Nov 2025 01:19:49 +0530 Subject: [PATCH] feat: Added .gitignore rules to ignore all images except for the input images --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index e69de29..c8f5303 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,8 @@ +# Ignore all bmp, png, jpeg files +*.bmp +*.png +*.jpeg +#excluded input image +!in.bmp +!in.png +!in.jpeg \ No newline at end of file