From 32255c13d6b465a974b639cca85c29c7b48f4a75 Mon Sep 17 00:00:00 2001 From: Huji Lee Date: Fri, 2 Sep 2016 16:46:07 -0400 Subject: [PATCH] Ignore both "build" and "build/" This is helpful because I often bypass the building process by creating a symlink from build/ to releases/ and it is best if git ignores a symlink (which is a file) just like it ignores a directory. --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e2fa39e..2471c3c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ node_modules/* -build/* +build +build/ Gemfile.lock *.lock @@ -26,4 +27,4 @@ npm-debug.log #eclipse .project -.settings/ \ No newline at end of file +.settings/