Skip to content

Commit

Permalink
fixed gitignore
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MindFreeze authored Feb 23, 2017
1 parent 87850b3 commit 5e653b2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5e653b2

Please sign in to comment.