Compare commits

...

4 Commits

Author SHA1 Message Date
ibrahim sanduvaç
7bb9dcbb2c
Merge 8f80fc38c9 into 57286c3887 2026-08-25 05:41:10 +00:00
ibrahim
8f80fc38c9 Julia: ignore *.jl.*.mem and CondaPkg's project-local environment
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>
2026-08-25 08:20:34 +03:00
ibrahim
40c5d3211c remove __pycache__. Because this pattern is Python-specific; remove .julia_history. Because The .julia_history pattern is redundant since .history would already match it 2025-10-04 09:04:10 +03:00
ibrahim
d8635c69ba Add ignore rules for Revise package files and common editor/OS temporary files in Julia projects 2025-10-04 08:53:35 +03:00

View File

@ -4,6 +4,7 @@
# 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
@ -26,3 +27,6 @@ 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/