[U-Boot] [PATCH v3 01/36] .gitignore: ingore files generated by Kbuild
Masahiro Yamada
yamada.m at jp.panasonic.com
Fri Dec 27 06:35:29 CET 2013
Ignore generated files by Kbuild such as .*.cmd, *.order, etc.
Besides above,
- Ignore *.s files
We do not need to ignore with file name, asm-offsets.s
- Do not ignore *.rej (for quilt)
- Ignore backup files, \#*#
Signed-off-by: Masahiro Yamada <yamada.m at jp.panasonic.com>
---
Changes in v3: None
Changes in v2:
- Do not double "*~"
- Ignore more patterns
.gitignore | 27 +++++++++++++++++++--------
1 file changed, 19 insertions(+), 8 deletions(-)
diff --git a/.gitignore b/.gitignore
index 3b14c25..d18ebf3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,16 +5,19 @@
#
# Normal rules
#
-
-*.rej
-*.orig
-*.a
+.*
*.o
+*.o.*
+*.a
+*.s
*.su
-*~
+*.mod.c
+*.i
+*.lst
+*.order
*.swp
-*.patch
*.bin
+*.patch
*.cfgtmp
*.dts.tmp
@@ -24,7 +27,6 @@
#
# Top-level generic files
#
-
/MLO*
/SPL
/System.map
@@ -49,6 +51,12 @@
/u-boot.sb
#
+# git files that we don't want to ignore even it they are dot-files
+#
+!.gitignore
+!.mailmap
+
+#
# Generated files
#
@@ -64,7 +72,6 @@
/include/generated/
/include/spl-autoconf.mk
/include/tpl-autoconf.mk
-asm-offsets.s
# stgit generated dirs
patches-*
@@ -90,3 +97,7 @@ GPATH
GRTAGS
GSYMS
GTAGS
+
+*.orig
+*~
+\#*#
--
1.8.3.2
More information about the U-Boot
mailing list