Skip to content

Commit 730f177

Browse files
authored
Add .gitignore based on LLVM's (#28)
1 parent 0b8a107 commit 730f177

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#==============================================================================#
2+
# This file specifies intentionally untracked files that git should ignore.
3+
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
4+
#
5+
# This file is intentionally different from the output of `git svn show-ignore`,
6+
# as most of those are useless.
7+
#==============================================================================#
8+
9+
#==============================================================================#
10+
# File extensions to be ignored anywhere in the tree.
11+
#==============================================================================#
12+
# Temp files created by most text editors.
13+
*~
14+
# Merge files created by git.
15+
*.orig
16+
# Reject files created by patch.
17+
*.rej
18+
# Byte compiled python modules.
19+
*.pyc
20+
# vim swap files
21+
.*.sw?
22+
.sw?
23+
#OS X specific files.
24+
.DS_store
25+
26+
#==============================================================================#
27+
# Explicit files to ignore (only matches one).
28+
#==============================================================================#
29+
# Various tag programs
30+
/tags
31+
/TAGS
32+
/GPATH
33+
/GRTAGS
34+
/GSYMS
35+
/GTAGS
36+
/ID
37+
.gitusers
38+
autom4te.cache
39+
cscope.files
40+
cscope.out
41+
autoconf/aclocal.m4
42+
autoconf/autom4te.cache
43+
/compile_commands.json
44+
# Visual Studio built-in CMake configuration
45+
/CMakeSettings.json
46+
# CLion project configuration
47+
/.idea
48+
/cmake-build*
49+
50+
#==============================================================================#
51+
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
52+
#==============================================================================#
53+
# VS2017 and VSCode config files.
54+
.vscode
55+
.vs
56+
#zed config files
57+
.zed
58+
# pythonenv for github Codespaces
59+
pythonenv*
60+
# clangd index. (".clangd" is a config file now, thus trailing slash)
61+
.clangd/
62+
.cache

0 commit comments

Comments
 (0)