From c9fb00604240755af1233b14c03af98084abd511 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Fri, 29 May 2026 11:45:47 -0400 Subject: [PATCH] chore: ignore sqlite WAL sidecars and stray vhs build binaries uptop.db* now covers the -shm/-wal sidecars; /backfill and /crop catch binaries left by `go build ./vhs/` without -o. --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a958ed7..99d2863 100644 --- a/.gitignore +++ b/.gitignore @@ -27,7 +27,11 @@ go.work # End of https://www.toptal.com/developers/gitignore/api/go /uptop -uptop.db +# stray binaries from `go build ./vhs/` without -o +/backfill +/crop +# sqlite db + WAL sidecars (-shm/-wal) +uptop.db* .ssh