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
.gitignore
file with following content:.idea/* log/* tmp/*
Pushed
.gitignore
file to repository:git add . git commit -m "test" git push origin master
Created new project that contains vendor folder
Pushed project with vendor folder to repository:
git add . git commit -m "test" git push origin master
Modified
.gitignore
file 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.