git logの(ほぼ)全部入りオプションです。
% git log --oneline --decorate --graph --branches --tags --remotes
- --oneline: 1commit 1行のみログ表示
- --decorate: branch名、tag名などの別名を表示
- --graph: revision graphを表示
- --branches: 他のbranchのlogも表示
- --tags: tagを表示
- --remotes: remote branchなどを表示
例としてpgpdump
https://github.com/kazu-yamamoto/pgpdump
のログを表示してみます。