-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
executable file
·96 lines (75 loc) · 1.61 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
96
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
# clion
.idea
cmake-build-debug
CMakeLists.txt
bin
*.temp
.clwb
*.swp
# cscope
cscope.out
cscope.in.out
cscope.po.out
cscope.files
tags
.sconsign.dblite
build.err
build.log
# python
*.pyc
# protobuf
*.pb.h
*.pb.cc
# bazel
bazel-*
bazel-bin
bazel-curve
bazel-genfiles
bazel-out
bazel-testlogs
# vscode
#.vscode
# vimprj
.vimprj/
#log
*.log
runlog/
# history
.gdb_history
.clang-format
.BUILD_MODE
__not_found__
# thirdparties
### Automatically added by Hedron's Bazel Compile Commands Extractor: https://github.com/hedronvision/bazel-compile-commands-extractor
# Ignore the `external` link (that is added by `bazel-compile-commands-extractor`). The link differs between macOS/Linux and Windows, so it shouldn't be checked in. The pattern must not end with a trailing `/` because it's a symlink on macOS/Linux.
/external
# Ignore links to Bazel's output. The pattern needs the `*` because people can change the name of the directory into which your repository is cloned (changing the `bazel-<workspace_name>` symlink), and must not end with a trailing `/` because it's a symlink on macOS/Linux.
/bazel-*
# Ignore generated output. Although valuable (after all, the primary purpose of `bazel-compile-commands-extractor` is to produce `compile_commands.json`!), it should not be checked in.
/compile_commands.json
# Ignore the directory in which `clangd` stores its local index.
/.cache/