From b460e3ab2f040c608f65613024f8051c9032fc9b Mon Sep 17 00:00:00 2001 From: Nick Josevski Date: Fri, 28 Aug 2026 09:58:38 +1000 Subject: [PATCH] chore: ignore .DS_Store macOS Finder writes .DS_Store into every directory it is opened in. This repo had no rule for it, so those files sit untracked and can be swept into a `git add` unnoticed -- one recently reached a pull request in OctopusDeploy/Jira that way. Verified with `git check-ignore`. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 13a1d644..fa163d07 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,7 @@ dist/ .env cmd/octopus/octopus -cmd/gen-docs/gen-docs \ No newline at end of file +cmd/gen-docs/gen-docs + +# macOS Finder metadata +.DS_Store