From e4c013f57c46c50c0e0bef748c8d4ce521f04398 Mon Sep 17 00:00:00 2001 From: Jean-Bernard Valentaten Date: Fri, 25 Nov 2016 12:23:46 +0100 Subject: [PATCH] Fixed that gitignore exceptions would not work By excluding the whole `src/lib` folder, the exceptions for `src/lib/Magento` and `src/lib/PHPUnit` would not work. For exceptions (aka unignores) to work, the parent folder may not be ignored but only its content may. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c4a1d93..3b395da 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,6 @@ /build.properties /build /output -/src/lib +/src/lib/* !/src/lib/Magento !/src/lib/PHPUnit