To show only file names in Git log, use this command:
git log --name-status --graph --oneline
The key parameter here is --name-status
. The others are optional. They just make the output look prettier.
To show only file names in Git log, use this command:
git log --name-status --graph --oneline
The key parameter here is --name-status
. The others are optional. They just make the output look prettier.