Ayush P Gupta
Ayush P Gupta

Reputation: 1549

Why two lines in git source tree cross each other?

Why do these lines cross each other. They could have run parallel. What is the significance of crossing lines?

enter image description here

Upvotes: 0

Views: 167

Answers (1)

fphilipe
fphilipe

Reputation: 10054

This has no particular meaning in Git. This is merely how the GUI chose to visualize it.

You can see if Git does the same with git log --graph --oneline. My guess is that it won't show this crossing in that particular case, but hard to say without seeing the full screenshot.

Upvotes: 3

Related Questions