When running git log --graph
on my copy of the Linux kernel, I'm seeing an underscore in the graph that doesn't look like it should be there.
What does that underscore mean?
The specific command I'm using is thus:
git log --graph --decorate --pretty=oneline --abbrev-commit --all --date-order
And the output looks like this:
I've tried looking at this area in the graph in gitk, but there doesn't seem to be anything out of the ordinary there.
I don't think this is just showing a branch point, as I'd expect that to be rendered as on the right, not as on the left (the left should match the image above):
I see: I'd expect for
normal branching:
\ \ \ \ \ \
/ / / / / /
| _ / | / /
| / |/ /
| | | |
| | | |
|/
(pipe-slash), not| _
(pipe-space-underscore). If that's what this means, I want to know what the difference is between this split and a normal one; if it means something different, I want to know what. – Oleum