.gitignore: move *.exe pattern to the top gitignore for Cygwin
GCC on Cygwin generates executables with .exe extension,
for example:
scripts/basic/fixdep.exe
scripts/docproc.exe
To ignore them, *.exe pattern should be moved
from tools/.gitignore to ./.gitignore
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
diff --git a/.gitignore b/.gitignore
index c2f53fc..4e4fd00 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,6 +21,9 @@
*.patch
*.cfgtmp
+# host programs on Cygwin
+*.exe
+
# Build tree
/build-*