Skip to content

Commit 8c8d463

Browse files
Merge pull request #2 from CliMA/sk/add_gitignore
Add `.gitignore`
2 parents 4e82eb7 + e25b2f5 commit 8c8d463

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Manifest.toml
2+
LocalPreferences.toml
3+
4+
# Files generated by invoking Julia with --code-coverage
5+
*.jl.cov
6+
*.jl.*.cov
7+
8+
# Files generated by invoking Julia with --track-allocation
9+
*.jl.mem
10+
11+
# Files generated by cpuprofile
12+
*.cpuprofile
13+
14+
# Files generated by ProfileCanvas
15+
*.html
16+
17+
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
18+
# They contain absolute paths specific to the host computer, and so should not be committed
19+
deps/deps.jl
20+
deps/build.log
21+
deps/downloads/
22+
deps/usr/
23+
deps/src/
24+
25+
# Build artifacts for creating documentation generated by the Documenter package
26+
docs/build/
27+
docs/site/
28+
# generated by Literate.jl
29+
docs/src/tutorials/
30+
31+
# ignore vscode artifacts
32+
.vscode
33+
34+
# Check in the docs and examples manifests
35+
!docs/src/assets/
36+
!examples/Manifest.toml
37+
38+
# File generated by Pkg, the package manager, based on a corresponding Project.toml
39+
# It records a fixed state of all packages used by the project. As such, it should not be
40+
# committed for packages, but should be committed for applications that require a static
41+
# environment.
42+
43+
44+
*.gif
45+
*.gz
46+
*.mp4
47+
*.png

0 commit comments

Comments
 (0)