From 6df3da6caba132c08250591e3f4e166c601ad856 Mon Sep 17 00:00:00 2001 From: Ned Loynd <41816363+NeRdTheNed@users.noreply.github.com> Date: Wed, 14 Oct 2020 17:06:45 +1100 Subject: [PATCH] Ignore commonly generated Mac OS junk files This is optional, but it would be a huge quality of life improvement for anyone developing on Mac OS, as the first thing I do when starting a new project is always to add this to the .gitignore. Example: Just from the small changes I've made to the build script alone, I've generated 4 .DS_Store files, which would clutter up this PR if I included them. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 550b373..09cd281 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,10 @@ bin/ .classpath .project +# macos + +*.DS_Store + # fabric run/