From 5e653b2a09c6af62845ae06e46908d9bab8eafe0 Mon Sep 17 00:00:00 2001 From: Petar Petrov Date: Thu, 23 Feb 2017 10:20:45 +0200 Subject: [PATCH] fixed gitignore Line 14 (img) caused the entire /dist/img directory to be ignored even though it is already in git, so new images were ignored. Prefixing it with / prevents this very general rule from applying to the subdirs. The same logic applies to the other rules for top level dirs. --- .gitignore | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index c2925d6a7d..97c2ab7ae9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,17 @@ .DS_Store -data/data.js -dist/*.js -dist/*.css -dist/*.map -dist/img/*.svg -dist/mapillary-js/ +/data/data.js +/dist/*.js +/dist/*.css +/dist/*.map +/dist/img/*.svg +/dist/mapillary-js/ node_modules/ npm-debug.log transifex.auth # autogenerated symlinks land.html -img -css/img -test/css -test/img +/img +/css/img +/test/css +/test/img