From 19ab5fa3106a635a6cf2e34db11b77af0bf2e59c Mon Sep 17 00:00:00 2001 From: Robert Naumann Date: Sat, 8 Oct 2022 13:18:18 +0200 Subject: [PATCH] [GIT] Add .DS_Store files to .gitignore (#4762) When working on macOS, the system creates a .DS_Store file in every accessed directory. They are marked as new files in git, which is very annoying. This change will exclude these files. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9c45ec7853d..f14e4ccbe72 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ modules/3rdparty modules/[Aa][Hh][Kk]_[Tt]ests .cache .cproject +.DS_Store .project .settings .vscode