How can I list all the deleted files in a Git repository?

Question

I know Git stores information of when files get deleted and I am able to check individual commits to see which files have been removed, but is there a command that would generate a list of every deleted file across a repository's lifespan?

Answer

git log --diff-filter=D --summary

See Find and restore a deleted file in a Git repository

If you don't want all the information about which commit they were removed in, you can just add a grep delete in there.

git log --diff-filter=D --summary | grep delete

How do I remove a single file from the staging area (undo git add)?

LF will be replaced by CRLF in git - What is that and is it important? [duplicate]