-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path.gitignore
59 lines (49 loc) · 932 Bytes
/
.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
# Output binaries and temporary files.
.current
.current_*
.current_*.*
# Autogenerated by `make` in directories where `Makefile` is a symlink to `MakefileWithCurrentBuild`.
current_build.h
current_build.h.*
# The now-redundant README-s, which `make` from within some mid-level dirs will generate.
blocks/http/README.md
storage/README.md
# Usual C++ stuff.
core
*.h.gch
# Usual Linux stuff.
*~
*.o
*.a
*.swp
a.out
.exrc # ¯\_(ツ)_/¯
**/.exrc
# The top-level `make test` target.
**/zzz_full_test
**/everything
**/everything.dSYM
# The coverage report.
coverage
coverage0.info
coverage.info
*.gcov
*.gcda
*.gcno
# Micro$oft Vi$ual $tudio files.
*.suo
*.sdf # Some say `*.sdf` should not be `.gitignore`-d, but I'm not carrying 50+MB into this repo. -- D.K.
*.sln.cache
.vs/
Thumbs.db
*.user
Debug
Release
x64
# CLion.
.idea
# QT Creator.
CMakeLists.txt.user
# Let's not even talk about it.
node_modules
**/node_modules