When I run:
$ git log --all --decorate --oneline --graph
I see this output:
* 159d15f (origin/include-user-destinations, include-user-destinations) Add destination to Scotland
* 16b251a Add destinations to Florida and Paris
* 650a8de (HEAD -> master, upstream/master, origin/master, origin/HEAD) Update index.html
* 574c456 changed travel destinations
* 9039cf9 changed to Sao Paolo
* b2d0353 Add animation to destination headings
* 1204be0 Style destinations
* 7562e21 Add starting destinations
* 5e9b201 Initial commit
Which is a flat list of commits without showing all branches. However, in the past the output used to have red lines that would show a branch separated from the master; something similar to this (obviously this is the output from a different repo):
* e6122521 (HEAD -> master)
* f533d9eb
|\
|/|
* | 7c2cb982 Merge branch
|\ \
I know I have a branch because when I run $ git branch
it shows:
include-user-destinations
* master
My guess is that I have made a change to my git config that has changed the output. Any ideas on how I can show the branch lines again?