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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -