Git Log Show File Names Link to heading
The --name-only
flag will show the filenames of changes in each commit on git log
.
With --oneline
we get a clean view of the log:
git log --name-only --oneline -n 10
The --name-only
flag will show the filenames of changes in each commit on git log
.
With --oneline
we get a clean view of the log:
git log --name-only --oneline -n 10