Y
Hacker News
new
|
ask
|
show
|
jobs
by
mountainboy
940 days ago
Interesting, so then which path(s) does git display when running git-log on this?
2 comments
seba_dos1
940 days ago
Define "this". If you git-log from the commit on the top of that ASCII graph, you get all the drawn commits listed (unless adjusted with arguments such as `--no-merges` or `--first-parent`).
link
Izkata
939 days ago
You can get ASCII art of that structure with:
git log --graph --oneline
Older versions you'll also want --decorate to show branches and tags, but I think that's on by default now.
link