From f55c99a59701983f4472cb87b4a1d9def4a27ff6 Mon Sep 17 00:00:00 2001 From: Rakhat Jabagin Date: Mon, 9 Jun 2014 13:43:35 +0600 Subject: [PATCH] Remove test/bower_components from gitignore list No need to specify test/bower_components in gitignore, if bower_components folder was added without "/". From git docs: > If the pattern does not contain a slash '/', Git treats it as a shell glob pattern and checks for a match against the pathname relative to the location of the .gitignore file (relative to the toplevel of the work tree if not from a .gitignore file). --- app/templates/gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/app/templates/gitignore b/app/templates/gitignore index fdc561ec..13a33cba 100644 --- a/app/templates/gitignore +++ b/app/templates/gitignore @@ -3,4 +3,3 @@ dist .tmp<% if (includeSass) { %> .sass-cache<% } %> bower_components -test/bower_components