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
You can use git rm --cached "path/to/file" to stage a single deleted file.
git rm --cached "path/to/file"
Use git rm -r --cached -- "path/to/directory" to stage a complete deleted directory.
git rm -r --cached -- "path/to/directory"