From 02e49a8609d53641fee385b18527eec026ed0f2e Mon Sep 17 00:00:00 2001 From: Matt Rutkowski Date: Thu, 11 Feb 2016 17:34:15 -0600 Subject: [PATCH] Add OSX specific file extensions to gitignore Added a section to the proejct .gitignore file to add OSX specific file extensions to. Added the primary extension that causes issues i.e., .DS_Store which gets added by the OSX Finder utility. Change-Id: Ic78f8e367e2401868c7df1b49ef72f57f5cc3011 --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7dfa8ae..c172104 100644 --- a/.gitignore +++ b/.gitignore @@ -50,4 +50,7 @@ ChangeLog *~ .*.swp .idea -*.iml \ No newline at end of file +*.iml + +# OSX +.DS_Store \ No newline at end of file