[U-Boot] [PATCH 01/34] .gitignore: ingore files generated by Kbuild
Masahiro Yamada
yamada.m at jp.panasonic.com
Wed Dec 11 12:01:23 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>
---
.gitignore | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/.gitignore b/.gitignore
index 3b14c25..a704488 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,13 +5,14 @@
#
# Normal rules
#
-
-*.rej
-*.orig
-*.a
+.*
*.o
+*.o.*
+*.a
+*.s
*.su
*~
+*.order
*.swp
*.patch
*.bin
@@ -24,7 +25,6 @@
#
# Top-level generic files
#
-
/MLO*
/SPL
/System.map
@@ -49,6 +49,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 +70,6 @@
/include/generated/
/include/spl-autoconf.mk
/include/tpl-autoconf.mk
-asm-offsets.s
# stgit generated dirs
patches-*
@@ -90,3 +95,7 @@ GPATH
GRTAGS
GSYMS
GTAGS
+
+*.orig
+*~
+\#*#
--
1.8.3.2
More information about the U-Boot
mailing list