'get list of files edited and type of edit using git

is there a way to get a list of all files that have been edited in a commit using git? the info I would need are:

file1 edited 
file2 deleted 
file3 edited
file4 created

I tried git show <sha> but gives info about all the changes at line level, does something exist for files?

git


Solution 1:[1]

What you are looking for is

git show --name-status the-commit-id

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1