2015-04-16 21:03:40

by Andi Kleen

[permalink] [raw]
Subject: [PATCH] Kbuild: Add ID files to .gitignore

From: Andi Kleen <[email protected]>

I use GNU id-utils to find code (essentially a database backed grep),
which generates an ID file to maintain its data.

Add ID to the .gitignore file.

Signed-off-by: Andi Kleen <[email protected]>
---
.gitignore | 3 +++
1 file changed, 3 insertions(+)

diff --git a/.gitignore b/.gitignore
index acb6afe..15766be 100644
--- a/.gitignore
+++ b/.gitignore
@@ -88,6 +88,9 @@ GRTAGS
GSYMS
GTAGS

+# id-utils files
+ID
+
*.orig
*~
\#*#
--
1.9.3


2015-06-15 12:38:45

by Michal Marek

[permalink] [raw]
Subject: Re: [PATCH] Kbuild: Add ID files to .gitignore

On 2015-04-16 23:02, Andi Kleen wrote:
> From: Andi Kleen <[email protected]>
>
> I use GNU id-utils to find code (essentially a database backed grep),
> which generates an ID file to maintain its data.
>
> Add ID to the .gitignore file.
>
> Signed-off-by: Andi Kleen <[email protected]>

Applied to kbuild.git#misc now, sorry for the delay.

Michal