From 3911f1c8b2b3ac8eb7f35b80ca7d9ec2f5c95d2e Mon Sep 17 00:00:00 2001 From: Evgeniy Patlan Date: Wed, 19 Aug 2026 12:58:26 +0300 Subject: [PATCH] Ignore packaging files generated into the source root cmake -S packaging/rpm writes mysql-shell.spec and cmake -S packaging/debian writes debian/ into the top of the source tree. Neither was ignored, so generating either leaves the checkout dirty and the files can be committed by accident. --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index ee1db5c30..567397687 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,8 @@ __pycache__/ .codex/ .agents/ .release-prep/ + +# written into the source root by the packaging generators +# (cmake -S packaging/rpm / -S packaging/debian) +/mysql-shell.spec +/debian/