I have a bunch of files deleted from the fs and listed as deleted in git status.
git status
How can I stage this changes faster then running git rm fo
git rm
On windows w/out Cygwin or powershell you can use like so:
git ls-files --deleted -z | for /f %f in ('more') do git rm --cached "%f"