How can I show the name of branches in the output of git log?
git log
For example with, git log --graph --all I get a nice overview of the commits,
git log --graph --all
Try the decorate option.
git log --graph --all --decorate
It annotates commits which are pointed to by tags or branches.