I would like to see what kind of change was made to each file in a commit. That is to see whether a file was modified, added or deleted.
For example, this gives a list of all files changed in a commit:
git show --pretty="format:" --name-only <SHA>
It would be nice to have a similar list where there is also information for each file about the change: added (new), modified or deleted. How to see this information?
Thank you!