Git Log with Changed Files

Show a more complete git log with details about changed files

The standard git log command lists out recent commits, but by default will not show modified files.

This behaviour can be modified with the following flags:

# Show names of changed files
git log --name-only

# Show names and status (modified, added, removed) of files
git log ---name-status

# Show file names and stats (2 +-) for all files
git log --stat

Related