From 1c01a8bf4f753fed5913fd96f7a0610977c6132b Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Mon, 21 Mar 2016 10:23:18 -0600 Subject: [PATCH] fix(gitignore): ignore .DS_Store files On OSX, a few things we have (notably, docs) cause OS X to generate .DS_Store caches. These should not get checked into Git. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8e2dc16c0..65c8a29aa 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ nohup.out /rootfs/resourcifier/bin/v1.* /rootfs/expandybird/bin/expandybird /rootfs/expandybird/opt/expansion +.DS_Store