I have a load of deleted files I want to commit.
But I don\'t want to type git rm for each one.
If i type git rm . -r it will try and delete everything.
git commit -a
should work as long as those are your only changes (it will add all unstaged files and commit).