I have a bunch of files deleted from the fs and listed as deleted in git status.
How can I stage this changes faster then running git rm fo
git commit -a would stage deleted files (as well as modified) and prompt you for your commit message. I usually execute git commit -av (verbose) to also see diffs of modified files.
From the manual page:
by using the -a switch with the commit command to automatically "add" changes from all known files (i.e. all files that are already listed in the index) and to automatically "rm" files in the index that have been removed from the working tree, and then perform the actual commit;