Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 546 Bytes

show-only-filenames-in-git-log.md

File metadata and controls

15 lines (11 loc) · 546 Bytes

Show only filenames in git log output

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.