From 278df9411e6ea45954e290ae47a4e87dc9fb160c Mon Sep 17 00:00:00 2001 From: Thomas Ales Date: Tue, 28 Jul 2026 11:39:51 -0500 Subject: [PATCH] Ignore macOS .DS_Store files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hardware/.DS_Store kept showing up as untracked throughout the refactor; .gitignore had no rule for it. The file itself is left on disk (Finder regenerates it) — it is simply ignored now. Co-Authored-By: Claude Opus 5 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) mode change 100644 => 100755 .gitignore diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 index e1bf819..33c5d1b --- a/.gitignore +++ b/.gitignore @@ -177,3 +177,6 @@ cython_debug/ marimo/_static/ marimo/_lsp/ __marimo__/ + +# macOS +.DS_Store