mirror of
https://github.com/github/gitignore.git
synced 2026-08-26 17:57:13 +02:00
Replaces the previous contents of this branch, which added editor/OS and shared-library rules that belong in Global/ per the contributing guidelines. Two changes remain, both scoped to Julia.gitignore: * `*.jl.*.mem` — `--track-allocation` writes `<file>.jl.<pid>.mem`, so the existing `*.jl.mem` rule never matches the files Julia actually produces. This mirrors the `--code-coverage` section, which already carries both `*.jl.cov` and `*.jl.*.cov`. * `.CondaPkg/` — CondaPkg creates this directory inside the active project and populates it with a machine-specific Conda environment. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
# Files generated by invoking Julia with --code-coverage
|
|
*.jl.cov
|
|
*.jl.*.cov
|
|
|
|
# Files generated by invoking Julia with --track-allocation
|
|
*.jl.mem
|
|
*.jl.*.mem
|
|
|
|
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
|
|
# They contain absolute paths specific to the host computer, and so should not be committed
|
|
deps/deps.jl
|
|
deps/build.log
|
|
deps/downloads/
|
|
deps/usr/
|
|
deps/src/
|
|
|
|
# Build artifacts for creating documentation generated by the Documenter package
|
|
docs/build/
|
|
docs/site/
|
|
|
|
# File generated by Pkg, the package manager, based on a corresponding Project.toml
|
|
# It records a fixed state of all packages used by the project. As such, it should not be
|
|
# committed for packages, but should be committed for applications that require a static
|
|
# environment.
|
|
Manifest*.toml
|
|
|
|
# File generated by the Preferences package to store local preferences
|
|
LocalPreferences.toml
|
|
JuliaLocalPreferences.toml
|
|
|
|
# Conda environment and metadata created in the project directory by the CondaPkg package
|
|
.CondaPkg/
|