Generated image
|| #resource #git

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


Maybe try another one?

Encrypted LUKS Container Create an encrypted volume on linux using LUKS
2022.05.24
Intro to Server Monitoring How to monitor your server with Prometheus and Grafana
2019.11.01
Reusing Partials in Hugo Avoid code duplication by reusing Hugo partials
2022.08.09