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
Show all deleted files in some_branch
git diff origin/master...origin/some_branch --name-status | grep ^D
or
git diff origin/master...origin/some_branch --name-status --diff-filter=D