Git

Commit History

Show commit history

git log

Display a condensed commit history

git log --oneline

Show branching commit history

git log --graph

Filter commit history by author

git log --author=<author_name>

Show commit history since specific date

git log --since=<date>

Show commit history until specific date

git log --until=<date>

On this page