From a5e8ae81e970bd06640f70178d932abac7269d21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 4 Jan 2023 00:44:43 +0100 Subject: [PATCH] gitignore SQLite files Ignore `*.sqlite-shm` and `*.sqlite-wal` files. These are used by SQLite for shared memory and write-ahead logging. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 80cafcf8..38588051 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ *.exe *.sqlite +*.sqlite-shm +*.sqlite-wal *.db *.blend[0-9] *.flamenco.blend