Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 1 | # |
2 | # NOTE! Don't add files that are generated in specific | ||||
3 | # subdirectories here. Add them in the ".gitignore" file | ||||
4 | # in that subdirectory instead. | ||||
5 | # | ||||
Matt Kraai | ff2f5ff | 2009-06-04 21:43:10 -0700 | [diff] [blame] | 6 | # NOTE! Please use 'git ls-files -i --exclude-standard' |
Eduard - Gabriel Munteanu | f72e9df | 2008-06-26 10:54:34 +0300 | [diff] [blame] | 7 | # command after changing this file, to see if there are |
8 | # any tracked files which get ignored after the change. | ||||
9 | # | ||||
Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 10 | # Normal rules |
11 | # | ||||
12 | .* | ||||
13 | *.o | ||||
Alexey Dobriyan | 96918a3 | 2007-07-31 00:37:25 -0700 | [diff] [blame] | 14 | *.o.* |
Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 15 | *.a |
16 | *.s | ||||
17 | *.ko | ||||
Brian Gerst | 20ede27 | 2006-01-05 12:10:52 -0500 | [diff] [blame] | 18 | *.so |
Thomas Gleixner | f322727 | 2007-10-19 20:35:02 +0200 | [diff] [blame] | 19 | *.so.dbg |
Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 20 | *.mod.c |
Josh Triplett | 0f71a37 | 2006-09-16 12:15:42 -0700 | [diff] [blame] | 21 | *.i |
Josh Triplett | 87dedbd | 2006-09-16 12:15:43 -0700 | [diff] [blame] | 22 | *.lst |
Josh Triplett | ac3b719 | 2006-09-16 12:15:44 -0700 | [diff] [blame] | 23 | *.symtypes |
Sam Ravnborg | c6025f4 | 2007-12-31 14:26:12 +0100 | [diff] [blame] | 24 | *.order |
Eduard - Gabriel Munteanu | f72e9df | 2008-06-26 10:54:34 +0300 | [diff] [blame] | 25 | *.elf |
26 | *.bin | ||||
27 | *.gz | ||||
Gertjan van Wingerde | e3a41d7 | 2009-11-24 06:34:03 +0100 | [diff] [blame] | 28 | *.bz2 |
Arne Janbu | 3f8d9ce | 2009-06-10 18:25:10 +0200 | [diff] [blame] | 29 | *.lzma |
Romain Francoise | 790e10b | 2011-02-22 10:48:06 +0100 | [diff] [blame] | 30 | *.xz |
Markus Trippelsdorf | 4e50529 | 2013-07-31 13:53:33 -0700 | [diff] [blame] | 31 | *.lz4 |
Philipp Kohlbecher | 52b8002 | 2010-03-17 19:52:12 +0100 | [diff] [blame] | 32 | *.lzo |
Mike Frysinger | 35763e8 | 2009-05-26 19:37:54 -0400 | [diff] [blame] | 33 | *.patch |
Amerigo Wang | 7a6b1f1 | 2009-06-22 17:18:32 +0800 | [diff] [blame] | 34 | *.gcno |
Zhao, Gang | 082722a | 2014-04-14 14:56:15 +0800 | [diff] [blame] | 35 | modules.builtin |
36 | Module.symvers | ||||
Andi Kleen | 866ced9 | 2014-07-30 20:50:18 +0200 | [diff] [blame] | 37 | *.dwo |
Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 38 | |
39 | # | ||||
40 | # Top-level generic files | ||||
41 | # | ||||
Linus Torvalds | 6db823c | 2010-03-12 16:30:23 -0800 | [diff] [blame] | 42 | /tags |
43 | /TAGS | ||||
44 | /linux | ||||
45 | /vmlinux | ||||
Daniel Thompson | 2478a8a | 2015-02-17 13:47:38 -0800 | [diff] [blame] | 46 | /vmlinux-gdb.py |
Linus Torvalds | 6db823c | 2010-03-12 16:30:23 -0800 | [diff] [blame] | 47 | /vmlinuz |
48 | /System.map | ||||
49 | /Module.markers | ||||
Linus Torvalds | 6db823c | 2010-03-12 16:30:23 -0800 | [diff] [blame] | 50 | |
51 | # | ||||
Greg Dietsche | b756828 | 2011-06-30 18:42:50 -0500 | [diff] [blame] | 52 | # Debian directory (make deb-pkg) |
53 | # | ||||
54 | /debian/ | ||||
55 | |||||
56 | # | ||||
Andrey Skvortsov | dd10ca6 | 2015-02-12 15:01:19 -0800 | [diff] [blame] | 57 | # tar directory (make tar*-pkg) |
58 | # | ||||
59 | /tar-install/ | ||||
60 | |||||
61 | # | ||||
Linus Torvalds | 6db823c | 2010-03-12 16:30:23 -0800 | [diff] [blame] | 62 | # git files that we don't want to ignore even it they are dot-files |
63 | # | ||||
Denis V. Lunev | 9e447a7 | 2007-10-16 11:22:21 +0400 | [diff] [blame] | 64 | !.gitignore |
Eduard - Gabriel Munteanu | f72e9df | 2008-06-26 10:54:34 +0300 | [diff] [blame] | 65 | !.mailmap |
Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 66 | |
67 | # | ||||
68 | # Generated include files | ||||
69 | # | ||||
Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 70 | include/config |
Sam Ravnborg | f14875a | 2009-04-18 23:51:08 +0200 | [diff] [blame] | 71 | include/generated |
Sam Ravnborg | d8ecc5c | 2011-04-27 22:29:49 +0200 | [diff] [blame] | 72 | arch/*/include/generated |
Linus Torvalds | 1e65174 | 2005-10-18 08:26:15 -0700 | [diff] [blame] | 73 | |
Mauro Carvalho Chehab | 1d51960 | 2006-02-27 00:07:24 -0300 | [diff] [blame] | 74 | # stgit generated dirs |
75 | patches-* | ||||
Qi Yong | 8ccf283 | 2006-07-17 13:37:06 +0800 | [diff] [blame] | 76 | |
77 | # quilt's files | ||||
78 | patches | ||||
79 | series | ||||
Tobias Klauser | 132e2bc | 2006-12-22 01:07:32 -0800 | [diff] [blame] | 80 | |
81 | # cscope files | ||||
82 | cscope.* | ||||
Jike Song | 9723c04 | 2008-05-22 09:23:10 +0800 | [diff] [blame] | 83 | ncscope.* |
Alexey Dobriyan | 3f1b0e1 | 2007-07-15 23:41:52 -0700 | [diff] [blame] | 84 | |
Jani Nikula | f2ac5e7 | 2009-06-11 12:21:47 +0300 | [diff] [blame] | 85 | # gnu global files |
86 | GPATH | ||||
87 | GRTAGS | ||||
88 | GSYMS | ||||
89 | GTAGS | ||||
90 | |||||
Alexey Dobriyan | 3f1b0e1 | 2007-07-15 23:41:52 -0700 | [diff] [blame] | 91 | *.orig |
Chris Dearman | 7088655 | 2008-03-04 14:28:59 -0800 | [diff] [blame] | 92 | *~ |
93 | \#*# | ||||
David Howells | addbcdb | 2012-09-26 10:09:50 +0100 | [diff] [blame] | 94 | |
95 | # | ||||
96 | # Leavings from module signing | ||||
97 | # | ||||
98 | extra_certificates | ||||
99 | signing_key.priv | ||||
100 | signing_key.x509 | ||||
David Howells | addbcdb | 2012-09-26 10:09:50 +0100 | [diff] [blame] | 101 | x509.genkey |
Borislav Petkov | 25fba9b | 2014-02-10 14:25:45 -0800 | [diff] [blame] | 102 | |
103 | # Kconfig presets | ||||
104 | all.config | ||||
Boaz Harrosh | dfe0487 | 2014-11-25 18:42:54 +0200 | [diff] [blame] | 105 | |
106 | # Kdevelop4 | ||||
107 | *.kdev4 |