summaryrefslogtreecommitdiff
path: root/.gitignore
blob: de0d2e3999bc9c2f32b2ea36efb6ea8423a1b517 (plain)
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
#
# NOTE! Please use 'git ls-files -i --exclude-standard'
# command after changing this file, to see if there are
# any tracked files which get ignored after the change.
#

# Temp files (e.g. editors).
*~
*.sw[op]

# Compiled objects.
*.a
*.o
*.l[ao]
*.so
*.exe

*.d
*.depends
.deps
.libs

*.gch
*.gcda
*.gcno

# Common output files.
*.dump
*.out
*.test

# Protobuf files.
*.pb.cc
*.pb.h

# Python files.
*.pyc

# Debug (e.g. gdb).
.gdb_history
.gdbinit

core
cscope.*
tags
tags_sorted_by_file

# Patch files.
*.diff
*.orig
*.rej

# Nested git repos.
/glbench/images/

# Cargo lock file.
Cargo.lock

# Cargo build directories.
target/

# VSCode source dirs
.vscode/

# Intellij project dirs
.idea

# clangd cache dir
.clangd
.cache