I have added vendor folder to my .gitignore file, but still whenever I do git status it shows me that vendor folder is modified.
Below are my steps that I followed in order to push my code to my repository:
Created
.gitignorefile with following content:.idea/* log/* tmp/*Pushed
.gitignorefile to repository:git add . git commit -m "test" git push origin masterCreated new project that contains vendor folder
Pushed project with vendor folder to repository:
git add . git commit -m "test" git push origin masterModified
.gitignorefile to ignore vendor folder:.idea/* log/* tmp/* vendor/bundle/* vendor/cache/* vendor/plugins/*
But wherever I do git status it shows:
modified: vendor/bundle/ruby/1.9.1/bundler/gems/jquery-rails-f79e8f178
even if the vendor folder is in .gitignore file.