From ff68f43dbc43c06ca349b593d008693eef9a3ae4 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Fri, 7 Jan 2022 16:49:01 +0100 Subject: [PATCH] build: Fix *.wrap exclude pattern in .gitignore The current rules trigger git to to complain with $ git add subprojects/libnvme.wrap The following paths are ignored by one of your .gitignore files: subprojects We need to keep the parent directory in the tracking domain and just filter out all sub directories and files except the wrap files. Signed-off-by: Daniel Wagner --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f1438ee4..62309526 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,7 @@ version ccan/config.h ccan/tools/configurator/configurator -subprojects +subprojects/* !subprojects/*.wrap cscope.* -- 2.50.1