-
Notifications
You must be signed in to change notification settings - Fork 25
/
.gitignore
95 lines (89 loc) · 1.37 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#Dataplane executable
/dataplane
/dataplane_test
# Build results
/build
# Protobuf generated files
protobuf/*.pb.h
protobuf/*.pb-c.[ch]
# Debian rules
build-stamp
/debian/debhelper-build-stamp
/debian/golang-github-danos-vyatta-dataplane-protobuf-dev/
/debian/libvyatta-dataplane-proto-dev/
/debian/libvyatta-dataplane-proto-support/
/debian/libvyatta-dataplane-proto1/
/debian/libvyattafal-dev/
/debian/vyatta-dataplane-dev/
/debian/vyatta-dataplane-sample-plugin/
/debian/vyatta-dataplane-test/
/debian/libvyatta-jsonw1/
/debian/libvyatta-dataplane-proto-c-dev/
/debian/libvyatta-dataplane-proto-c1/
/debian/libvyatta-vplane/
dynsyms
funcsyms
keep_symbols
mini_debuginfo
# Normal rules
.*
*.o
*.o.*
*.a
*.s
*.ko
*.so
*.so.dbg
*.lo
*.la
*.mod.c
*.i
*.lst
*.symtypes
*.order
modules.builtin
*.elf
*.bin
*.gz
*.bz2
*.lzma
*.xz
*.lzo
*.gcno
*.gcda
# Ignore tags created by etags, ctags, gtags (GNU global) and cscope
TAGS
.TAGS
!TAGS/
tags
.tags
!tags/
gtags.files
GTAGS
GRTAGS
GPATH
GSYMS
cscope.files
cscope.out
cscope.in.out
cscope.po.out
# git files that we don't want to ignore even it they are dot-files
!.gitignore
!.gitlint
!.github
# don't ignore tool config files
!.checkpatch.conf
!.clang-tidy
!.clang-format
!.editorconfig
*.orig
*.rej
*~
\#*#
#UT executables
/tests/per_file/*_test
#UT coverage files
/*-coverage.info
/*-coverage/
#cppucheck log files
tests/per_file/cpputest_*.xml