From 2d7b1ffaa2a18369be3e478ff1c9036ee8e5b1b1 Mon Sep 17 00:00:00 2001 From: Victor Oladimeji Date: Sun, 7 Jun 2026 12:38:27 +0100 Subject: [PATCH] fix: correct malformed .gitignore Cargo.lock entry 'Cargo.lock (shared)' was not a comment (no leading #); git read it as a pattern matching a literal file named 'Cargo.lock (shared)', and it did NOT ignore Cargo.lock (which is correctly committed). Replace with a real comment explaining why Cargo.lock is tracked. Closes #44 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 79391b9..0782176 100644 --- a/.gitignore +++ b/.gitignore @@ -29,4 +29,4 @@ yarn-error.log* # Rust **/*.rs.bk -Cargo.lock (shared) +# Cargo.lock is intentionally committed (the workspace ships binaries)