Skip to content

Commit c3df3b2

Browse files
Add .gitignore for julia
1 parent efb5a8c commit c3df3b2

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

.gitignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/*.tar.gz
2+
/tmp
3+
/dist
4+
/dist-extras
5+
/julia
6+
/julia.bat
7+
/usr
8+
/oprofile_data
9+
/usr-staging
10+
/Make.user
11+
/julia-*
12+
/deps/jlutilities/depot
13+
/source-dist.tmp
14+
/source-dist.tmp1
15+
/test/results_*.json
16+
/test/results_*.dat
17+
/test/deps
18+
19+
*.expmap
20+
*.exe
21+
*.dll
22+
*.dwo
23+
*.do
24+
*.o
25+
*.o.tmp
26+
*.obj
27+
*.so
28+
*.dylib
29+
*.dSYM
30+
*.h.gen
31+
*.jl.cov
32+
*.jl.*.cov
33+
*.jl.mem
34+
*.jl.*.mem
35+
*.ji
36+
37+
/perf*
38+
.DS_Store
39+
.idea/*
40+
.vscode/*
41+
.zed/*
42+
*.heapsnapshot
43+
.cache
44+
# Buildkite: Ignore the entire .buildkite directory
45+
/.buildkite
46+
47+
# Builtkite: json test data
48+
/test/results.json
49+
50+
# Buildkite: Ignore the unencrypted repo_key
51+
repo_key
52+
53+
# Buildkite: Ignore any agent keys (public or private) we have stored
54+
agent_key*

0 commit comments

Comments
 (0)