When I run git status, I have a bunch of lines of the form
git status
deleted: dir/file.js
I can remove each of these individually wit
You can still git rm after the fact, but if you want, you can restore all your changed files (including deletions) to the last revision with git reset --hard
git rm
git reset --hard