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 gen
Since Windows doesn't have a grep command, this worked for me in PowerShell:
grep
git log --find-renames --diff-filter=D --summary | Select-String -Pattern "delete mode" | sort -u > deletions.txt