From 8c4449180f64faa37aea0b2a8b25600ca67c4f13 Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Mon, 3 Mar 2025 12:02:47 +0700 Subject: [PATCH] Adjust .gitignore Since commit cf029a87c984445e15b83b76f8c3406653b0692b, I get this error: ``` $ git add --verbose kali-config/common/includes.chroot/usr/lib/live/config/0031-kali-user-setup add 'kali-config/common/includes.chroot/usr/lib/live/config/0031-kali-user-setup' The following paths are ignored by one of your .gitignore files: kali-config/common/includes.chroot/usr/lib/live/config hint: Use -f if you really want to add them. hint: Disable this message with "git config advice.addIgnoredFile false" ``` This is because wildcards were dropped, ie `config/* became `config/` and `chroot/*` became `chroot/`, and I don't really understand *why* it caused the change in behavior, but let's not go down the rabbit hole. It seems to me that we want to ignore directories at the root, so be explicit about that, and that's enough to fix the issue. --- .gitignore | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 1467c8a..06ea234 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,12 @@ ## Directories -.build/ -cache/ -chroot/ +/.build/ +/cache/ +/chroot/ ## `lb` will generate this folder, `config` ## Which is why our config directory is called `kali-config` -config/ +/config/ ## Incase symlink, no slash -images +/images ## Files .lock