I'm currently on HEAD after pulling thousands of files with huge diffs. In pull and merge, we can get the summary of changed files (not the one with + and -, but just the list of changed file).
Is there a command to compare current HEAD with any hash commit and show only the name of files that is changed (I want to know what files is deleted by the latest pull to be precise).
_
NOTE: This is after I close the terminal after the pull, and I want to read again what is the deleted files. Using git diff is too heavy and make VSCode crash. GitHub commit diff also make my tab freeze.
Related to How can I see what has changed in a file before committing to git?