gitignore SQLite files

Ignore `*.sqlite-shm` and `*.sqlite-wal` files. These are used by SQLite
for shared memory and write-ahead logging.
This commit is contained in:
Sybren A. Stüvel 2023-01-04 00:44:43 +01:00
parent 354119e237
commit a5e8ae81e9

2
.gitignore vendored
View File

@ -1,5 +1,7 @@
*.exe *.exe
*.sqlite *.sqlite
*.sqlite-shm
*.sqlite-wal
*.db *.db
*.blend[0-9] *.blend[0-9]
*.flamenco.blend *.flamenco.blend