From 968e12e57c19d73557c76ac77d5c93e2d0ca4579 Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Mon, 12 May 2014 02:06:54 +0100 Subject: [PATCH] Add .DS_Store to .gitignore OSX adds .DS_Store files for housekeeping metadata. No need to store it in .git. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index b01512a2..6a8b685d 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ libs/*/Makefile* libs/*/debug/ libs/*/release/ libs/*/*.a + +# Ignore .DS_Store files on OSX +.DS_Store