I have the following: "Changes not staged for commit:"
deleted: .bundle/cache/le-2.6.2.gem
deleted: .bundle/gems/le-2.6.2/.gitignore
deleted: .bundle/gems/le-2.6.2/.travis.yml
This comes up everytime I type git status
.
I feel like I messed up everything by doing git rm .bundle/*
in the past so want to know what to do whenever I see a whole slew of things that say deleted that I am not using.
I have a similar list under : Untracked files: -- are they treated differently?
Update:
I did a git rm -r
on things that were uncached in .bundle...and now my app doesn't work.
I think I only wanted to remove those that say "deleted".
What's the right way to handle .bundle files in git and how do I fix the current scenario?
When I do bundle clean' then
bundle install` it still cannot find the gems I need. Thanks~