Skip to content

Commit 4c373fb

Browse files
authored
Merge pull request adafruit#16 from mrjimenez/pr_1
Adding a .gitignore to the project
2 parents ce4b31e + c235829 commit 4c373fb

File tree

1 file changed

+108
-0
lines changed

1 file changed

+108
-0
lines changed

.gitignore

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
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
18+
*.so
19+
*.so.dbg
20+
*.mod.c
21+
*.i
22+
*.lst
23+
*.symtypes
24+
*.order
25+
modules.builtin
26+
*.elf
27+
*.bin
28+
*.gz
29+
*.bz2
30+
*.lzma
31+
*.patch
32+
*.gcno
33+
34+
#
35+
# Top-level generic files
36+
#
37+
/tags
38+
/TAGS
39+
/linux
40+
/vmlinux
41+
/vmlinuz
42+
/System.map
43+
/Module.markers
44+
/Module.symvers
45+
46+
#
47+
# git files that we don't want to ignore even it they are dot-files
48+
#
49+
!.gitignore
50+
!.mailmap
51+
52+
#
53+
# Generated include files
54+
#
55+
include/config
56+
include/linux/version.h
57+
include/generated
58+
59+
# stgit generated dirs
60+
patches-*
61+
62+
# quilt's files
63+
patches
64+
series
65+
66+
# cscope files
67+
cscope.*
68+
ncscope.*
69+
70+
# gnu global files
71+
GPATH
72+
GRTAGS
73+
GSYMS
74+
GTAGS
75+
76+
# QT-Creator files
77+
Makefile.am.user
78+
*.config
79+
*.creator
80+
*.creator.user
81+
*.files
82+
*.includes
83+
84+
*.orig
85+
*~
86+
\#*#
87+
*.lo
88+
*.la
89+
Makefile
90+
Makefile.in
91+
aclocal.m4
92+
autoconfig.h
93+
autoconfig.h.in
94+
autom4te.cache/
95+
build-aux/
96+
config.log
97+
config.status
98+
configure
99+
libtool
100+
libupnp.pc
101+
m4/libtool.m4
102+
m4/ltoptions.m4
103+
m4/ltsugar.m4
104+
m4/ltversion.m4
105+
m4/lt~obsolete.m4
106+
stamp-h1
107+
docs/doxygen
108+

0 commit comments

Comments
 (0)