git branch -vv
List all branches with extra verbose information
The -vv flag makes git branch list the following:
- branch_name
- last_commit_hash
- linked_remote_branch
- last_commit_message
You can think of it as being more verbose than git branch -v.
Related commands