From c2ae921fd7bfba33700f29d4a447e892ccb11781 Mon Sep 17 00:00:00 2001 From: Roger Sheen Date: Wed, 27 Jun 2018 12:14:55 +0200 Subject: [PATCH 1/2] Remove .DS_Store file The macOS Desktop Services Store file should not be included in Git repositories. --- .DS_Store | Bin 8196 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 10142044aa33a8cab20928b24783f1079fde8160..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8196 zcmeHMO>f#j6r4>XKR9DV7fH~xV|p;dB9#HGhJKp+xe6yWZE*}v1-k5t}$59O2y zwQr@}XL;t?vtxVBGXUJ^I3EJn00!(nUVY-AG>`i(+C|#)h0!q|SYVIEd_P-1G=gnA z%mH)2954sW0dwFS9N;_Kx50_`enf3F2h4&0(gD9dRO~+1DYh|&rGrB#0T?g2J2Y;y z4hT6_igk)@j3JfBjMalnsVKJV_ z2h0KKfUn*A_=**tul~+GY?|?Semu;8-#;$4_n+l4HqHDM z#%`sYWkPvNtSNJkRs6*8A~Ay=i9Iwbq^i%7RrLi!QJ*ms^*wyUGtJ#%mTS)dMP7z0 z;tE_y%WzfLcglLk2EVZFn%YALP=$4HRak~A!aBGjtdAQUD9T^&LRtYS;tGZ$PcVeQ zf}uzp;Fi*MUY>kz1lYYT1*ptHaFkgn95D~UQD*WHcW8JQ9B||#c9gSG35sZyrwBj6 z6XI2#GJ!s(=|U*0Lk20Li)2NvUTWvI12|pL>1S*{-2!w{(lx)O@ujM z4!n&6?s7aGk9h1J-};xrgoD VKLp4ECi{h8@BeUFZ1~3=_yhWAM&$qi From 5097d8870c2e93af832a5ff7b81aadca61d502fe Mon Sep 17 00:00:00 2001 From: Roger Sheen Date: Wed, 27 Jun 2018 12:24:02 +0200 Subject: [PATCH 2/2] Ignore changes to .DS_Store files https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5a708f3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Ignore all macOS Desktop Services Store files +.DS_Store