From aca3fcb5710387149fff63526ec7e499f47d91ef Mon Sep 17 00:00:00 2001 From: "Kamakura.Yx" Date: Wed, 10 Jan 2024 23:13:57 +0800 Subject: [PATCH] Ignore .DS_Store files This commit updates the .gitignore file to ignore .DS_Store files, which are created by macOS. These files are not relevant to the project and should not be included in version control. Signed-off-by: Kamakura.Yx --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 3b50f4d87..c5c939de6 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ dist/ *.egg-info/ build/ review.md +.DS_Store