From 18f49082bc1e64dfcfbc85c2fcf6edfbe41d9529 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Wed, 23 Feb 2022 10:49:18 +0800 Subject: [PATCH] gitignore: add .DS_Store The file is used in macOS to stores custom attributes of its containing folder and should not be committed to this repository. - https://github.com/github/gitignore/search?q=DS_Store - https://en.wikipedia.org/wiki/.DS_Store --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 24c03598..9379563e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ # Dependency directories node_modules/ -.history \ No newline at end of file +.history +.DS_Store