Skip to content

Commit 76512d9

Browse files
ararslanshiftkey
authored andcommitted
Add more standard ignored files for Julia (#2992)
* Add more standard ignored files for Julia In particular, this adds documentation build artifacts generated by Documenter.jl as well as Manifest.toml, which can appear in docs/, in test/, or at the top level. * Clarify the intent of each ignored item Also add a few more build artifacts from BinaryProvider/BinDeps.
1 parent 1a417fe commit 76512d9

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Julia.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
1+
# Files generated by invoking Julia with --code-coverage
12
*.jl.cov
23
*.jl.*.cov
4+
5+
# Files generated by invoking Julia with --track-allocation
36
*.jl.mem
7+
8+
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
9+
# They contain absolute paths specific to the host computer, and so should not be committed
410
deps/deps.jl
11+
deps/build.log
12+
deps/downloads/
13+
deps/usr/
14+
deps/src/
15+
16+
# Build artifacts for creating documentation generated by the Documenter package
17+
docs/build/
18+
docs/site/
19+
20+
# File generated by Pkg, the package manager, based on a corresponding Project.toml
21+
# It records a fixed state of all packages used by the project. As such, it should not be
22+
# committed for packages, but should be committed for applications that require a static
23+
# environment.
24+
Manifest.toml

0 commit comments

Comments
 (0)