To see only the names of files that changed with git log, use the --name-only
flag.
git log --name-only
To show name and status (modified, added, etc.) of the files, use --name-status
git log ---name-status
Tacking on --oneline
makes both options less verbose.
Found on Stack Overflow. Read the git log documentation for more options.