My .gitignore file has the following line
vendor/
I have modified a file inside the vendor folder. Now when I do update my bundles by performi
You can do either:
Revert the file you changed to its initial state:
git checkout path/to/file
Remove the vendor/
directory and run bin/vendors install
again. That way you are sure everything is new.
A rule of thumb of thumb is that should NEVER modify files in the vendor/
directory.
Hope that helps!