[media] mantis: get rid of warning: no previous prototype
[deliverable/linux.git] / .gitignore
... / ...
CommitLineData
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#
6# NOTE! Please use 'git ls-files -i --exclude-standard'
7# command after changing this file, to see if there are
8# any tracked files which get ignored after the change.
9#
10# Normal rules
11#
12.*
13*.o
14*.o.*
15*.a
16*.s
17*.ko.unsigned
18*.ko.stripped
19*.ko.stripped.dig
20*.ko.stripped.sig
21*.ko
22*.so
23*.so.dbg
24*.mod.c
25*.i
26*.lst
27*.symtypes
28*.order
29modules.builtin
30*.elf
31*.bin
32*.gz
33*.bz2
34*.lzma
35*.xz
36*.lzo
37*.patch
38*.gcno
39
40#
41# Top-level generic files
42#
43/tags
44/TAGS
45/linux
46/vmlinux
47/vmlinuz
48/System.map
49/Module.markers
50/Module.symvers
51
52#
53# Debian directory (make deb-pkg)
54#
55/debian/
56
57#
58# git files that we don't want to ignore even it they are dot-files
59#
60!.gitignore
61!.mailmap
62
63#
64# Generated include files
65#
66include/config
67include/linux/version.h
68include/generated
69arch/*/include/generated
70
71# stgit generated dirs
72patches-*
73
74# quilt's files
75patches
76series
77
78# cscope files
79cscope.*
80ncscope.*
81
82# gnu global files
83GPATH
84GRTAGS
85GSYMS
86GTAGS
87
88*.orig
89*~
90\#*#
91
92#
93# Leavings from module signing
94#
95extra_certificates
96signing_key.priv
97signing_key.x509
98signing_key.x509.keyid
99signing_key.x509.signer
100x509.genkey
This page took 0.024557 seconds and 5 git commands to generate.