From 1bb3320d5c8f41218e65c752c41512b88d0cd7e8 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 21 Aug 2016 21:30:00 +0200 Subject: [PATCH] gitignore: expand ignored files The ignored files in libs/parser are matched with a glob, but it is confusing to have a glob ending in '.c', as it might match an actual source file. Just ignore files explicitly. Signed-off-by: "Yann E. MORIN" --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a74794a..7483ffe 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,9 @@ /libs/images/images.c /libs/images/images.h -/libs/parser/?conf.c +/libs/parser/hconf.c +/libs/parser/lconf.c +/libs/parser/yconf.c /utils/tweak /utils/gettext -- 2.39.2