From c38c4d9d36d765bbbe839c00b9580f6b1b8a0ef4 Mon Sep 17 00:00:00 2001 From: Zhao Heming Date: Thu, 10 Sep 2020 23:38:07 +0800 Subject: gitignore: ignore all cscope generated files When using cscope to read code, it will generate below 3 files for speedup cross-refer: cscope.files, cscope.in.out, cscope.po.out The .gitignore only contains "/cscope.out". It a little bit messy when executing 'git status', and other git commands. This patch add all cscope generated files in .gitignore. Signed-off-by: Zhao Heming --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7ebb8bb3b..cfd5bee1c 100644 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,7 @@ make.tmpl /config.log /config.status /configure.scan -/cscope.out +/cscope.* /html/ /reports/ /tags -- cgit v1.2.1