From c5bf750bf31a12bd4e04cff916235e2f49dc1949 Mon Sep 17 00:00:00 2001 From: Bytecurl <102375389+bytecurl@users.noreply.github.com> Date: Thu, 7 Apr 2022 19:59:05 +0200 Subject: [PATCH] Add .DS_Store and Thumbs.db to .gitignore Add OS specific local files that should not be included in a git repository - .DS_Store (macOS) and Thumbs.db (Windows) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 9322b0c81..0ec3f7ace 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,7 @@ CMakeLists.txt.user # place to put local temporary files tmp + +# OS specific local files +.DS_Store +Thumbs.db