.gitignore 802 字节
Newer Older
1 2 3 4 5 6 7
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# Normal rules
#
8
.*
G
Grant Likely 已提交
9
*.o
10 11 12
*.o.*
*.a
*.s
T
Tom Rini 已提交
13
*.su
14 15 16 17 18
*.mod.c
*.i
*.lst
*.order
*.elf
19
*.swp
20
*.bin
21
*.patch
22
*.cfgtmp
23

24 25 26
# host programs on Cygwin
*.exe

27 28 29
# Build tree
/build-*

30 31 32
#
# Top-level generic files
#
33
/MLO*
B
Benoît Thébaudeau 已提交
34
/SPL
35
/System.map
36
/u-boot*
37

38 39 40 41 42 43
#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.mailmap

44 45 46
#
# Generated files
#
G
Grant Likely 已提交
47
/LOG
48
/spl/
49 50
/tpl/

51 52 53 54
#
# Generated include files
#
/include/config/
55 56
/include/generated/

57 58
# stgit generated dirs
patches-*
59
.stgit-edit.txt
60 61 62 63 64

# quilt's files
patches
series

M
Mike Frysinger 已提交
65 66 67
# gdb files
.gdb_history

68 69
# cscope files
cscope.*
S
Stefan Roese 已提交
70

71
# tags files
P
Po-Yu Chuang 已提交
72
/tags
73 74 75
/ctags
/etags

76 77 78 79 80
# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS
81 82 83 84

*.orig
*~
\#*#