From e405f82e09f3b0b656acb09bf40780ab443774ad Mon Sep 17 00:00:00 2001 From: Sudeep Holla Date: Thu, 17 Oct 2024 14:16:46 +0100 Subject: [PATCH] gitignore: Add docker build assets path Currently after building the docker images locally the git starts showing the generated files as untracked. One needs to be careful and not use `git add .` to avoid adding them accidentally. Just add these generated files in docker/assets path in .gitignore to avoid such accidental addition. Signed-off-by: Sudeep Holla --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e540b2e..4cd27bb 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ documentation/_build/ public/ test/assets/ test/build/ +docker/assets/ -- GitLab