usr/include: refactor .gitignore
authorMasahiro Yamada <masahiroy@kernel.org>
Sat, 24 Apr 2021 19:47:19 +0000 (04:47 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Sat, 1 May 2021 15:43:34 +0000 (00:43 +0900)
The current .gitignore intends to ignore everything under usr/include/
except .gitignore and Makefile.

A cleaner solution is to use a pattern suffixed with '/', which matches
only directories. It works well here because all the exported headers
are located in sub-directories, like <linux/*.h>, <asm/*.h>.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
usr/include/.gitignore

index d2fab782cb7d8bf1528ac5177b15c41066c0067d..17b0ba1bd32598feb004a3ce1371e2c893e97fbf 100644 (file)
@@ -1,4 +1,2 @@
 # SPDX-License-Identifier: GPL-2.0-only
-*
-!.gitignore
-!Makefile
+/*/