From 4f1eafb044570e7fe9a9d432449def4c07a08334 Mon Sep 17 00:00:00 2001 From: nielash Date: Tue, 11 Jul 2023 02:22:20 -0400 Subject: [PATCH] gitignore: add .DS_Store and remove *.log .DS_Store is an irrelevant file created automatically by macOS. *.log can't be ignored because bisync uses .log files in its test suite. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ff61403f3..0dd372896 100644 --- a/.gitignore +++ b/.gitignore @@ -8,10 +8,10 @@ rclone.iml .idea .history *.test -*.log *.iml fuzz-build.zip *.orig *.rej Thumbs.db __pycache__ +.DS_Store \ No newline at end of file