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
Post a Comment