From 5a6e37e7d5d628ed6162dc89592eec94c2e9e697 Mon Sep 17 00:00:00 2001 From: Oliver Sartun Date: Tue, 8 Jul 2014 19:42:46 +0200 Subject: [PATCH] Ignore node_modules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If I get this: http://stackoverflow.com/questions/11459475/should-i-check-in-node-modul es-to-git-when-creating-a-node-js-app-on-heroku correctly, I shouldn’t check in node_modules as this is not an application, but a reusable package. Right?! I have honestly no experience with node! --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 496ee2c..91dfed8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.DS_Store \ No newline at end of file +.DS_Store +node_modules \ No newline at end of file