History
Visualize Branches (branches and merges)
git log --oneline --graph --all --decorate
Pretty log
git log --pretty=format:"%h %an %ar %s"
Author
git log --author="Alexander"
Keyword
File
Show commits between two refs:
Last 5 commits
Time
git log --since="1 week ago"
Two Dates
git log --since="2024-01-01" --until="2024-01-31"