I have a branch in git
and I am on that branch and not on master
branch.
Using git log --graph
I can only see linearly that I am on that branch. But I can not see that I have "splitted" from the master
branch.
I.e. I see:
* b
*
*
*
Where b
is the private branch I made and I was expecting to see:
*master
* / *b
*
*
*
But I do see this in gitk
. Is it not possible to get an accurate graph of the tree via command line?