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
.
git branch -vv
The -vv
flag makes git branch
list the following:
You can think of it as being more verbose than git branch -v
.