Skip to content

Commit

Permalink
.gitignore: sort normal pattern rules alphabetically
Browse files Browse the repository at this point in the history
Follow Linux commit 1377dd3e2987 (".gitignore: sort normal pattern
rules alphabetically").

This would allow us to easily catch duplicated patterns if any.

Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
masahir0y authored and trini committed Jun 18, 2018
1 parent 8e51c0f commit 3eb0fa4
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# Normal rules
# Normal rules (sorted alphabetically)
#
.*
*.o
*.o.*
*.a
*.s
*.su
*.mod.c
*.bin
*.cfgtmp
*.elf
*.exe
*.gcda
*.gcno
*.i
*.lex.c
*.lst
*.mod.c
*.o
*.o.*
*.order
*.elf
*.swp
*.bin
*.patch
*.cfgtmp
*.s
*.su
*.swp
*.tab.[ch]

# host programs on Cygwin
*.exe

# Build tree
/build-*

Expand Down Expand Up @@ -86,7 +86,3 @@ GTAGS
*.orig
*~
\#*#

# gcc code coverage files
*.gcda
*.gcno

0 comments on commit 3eb0fa4

Please sign in to comment.