]> Git Repo - linux.git/commitdiff
Fix up .gitignore for top-level file patterns
authorLinus Torvalds <[email protected]>
Sat, 13 Mar 2010 00:30:23 +0000 (16:30 -0800)
committerLinus Torvalds <[email protected]>
Sat, 13 Mar 2010 00:30:23 +0000 (16:30 -0800)
Some of the gitignore file patters were explicitly meant to be only for
the top level, but weren't marked that way, so they would trigger
recursively in subdirectories too.  Normally that was harmless, but at
least "linux" happened to trigger elsewhere too. Fix it up.

And other patterns in that section weren't necessarily top-level at all.

Reported-by: Jiri Slaby <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
.gitignore

index efab0ebec85993afd1ee2a3a507722b7d0e223a2..a2939fc10b225d3727d6501831fad647553f11c8 100644 (file)
@@ -34,14 +34,18 @@ modules.builtin
 #
 # Top-level generic files
 #
-tags
-TAGS
-linux
-vmlinux
-vmlinuz
-System.map
-Module.markers
-Module.symvers
+/tags
+/TAGS
+/linux
+/vmlinux
+/vmlinuz
+/System.map
+/Module.markers
+/Module.symvers
+
+#
+# git files that we don't want to ignore even it they are dot-files
+#
 !.gitignore
 !.mailmap
 
This page took 0.054397 seconds and 4 git commands to generate.