git - Symfony - .gitignore and vendor dir -


in .gitignore file have added '/vendor/'. unfortunately when run command git status, console shows me lot of vendors files , dirs. how can avoit it?

having /vendor/ in .gitignore shouldn't problem. run git rm -rf --cached vendor first run git status again see if goes away. suspect might have staged or committed before accident.


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -