From: Anthony PERARD Date: Mon, 6 Feb 2023 07:53:22 +0000 (+0100) Subject: .gitignore: only ignore hidden dependency files X-Git-Tag: 4.18.0-rc1~1143 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=39ee93d21290293712ffb7f7c265df7dcb45b12f;p=xen.git .gitignore: only ignore hidden dependency files The current pattern also ignores directories suffixed with ".d", like: tools/hotplug/*/rc.d tools/hotplug/*/init.d Avoid this by only ignoring "hidden" files, for which name starts with a dot. Signed-off-by: Anthony PERARD Acked-by: Jan Beulich --- diff --git a/.gitignore b/.gitignore index 880ba88c55..5b30d8fc36 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,12 @@ .hg .*.cmd +.*.d +.*.d2 .*.tmp *.orig *~ *.swp *.o -*.d -*.d2 *.cppcheck.txt *.cppcheck.xml *.opic