-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (70 loc) · 841 Bytes
/
.gitignore
File metadata and controls
82 lines (70 loc) · 841 Bytes
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
## Compilation artefacts
*.bak
*.o
*.a
*.lo
*.la
*.sed
.deps/
.libs/
## development tools
.gdb_history
.python-version
*.patch
.idea
## autotools
/aclocal.m4
/ar-lib
/autom4te.cache/
/compile
Makefile
Makefile.in
/config.log
/config.status
/config.cache
/config.guess
/config.sub
/configure
/depcomp
/gl/
/include/config.h.in
/include/stamp-h1
/install-sh
/libtool
/ltmain.sh
.dirstamp
/missing
/ylwrap
/m4
!m4/ax_create_target_h.m4
!m4/ax_lib_socket_nsl.m4
!m4/ax_with_dmalloc.m4
# Ignoring generated /bin directory
/bin/
# Directories ending with .ign will be ignored
*.ign/
# Tarballs
*.tar.gz
*.tar
*.tgz
# Solaris distribution files
*.pkg
/pkg/
# emacs files
*~
/TAGS
# Linux distro files
*.rpm
*.deb
*.apk
# key files
*.pubk
*.prvk
*.crt
*.pem
*.wrap
# pkcs11 wrapper script files
.pkcs11rc
# VSCode
.vscode/
.clang-format