Reputation: 15292
I have develop
branch on my local.Its created using remote develop
branch.
Now I want to know from which other remote branch
this remote develop branch
is created?
Upvotes: 1
Views: 114
Reputation: 24156
git log
with flags you can see parent branch or branch topology.
$ git log --oneline --decorate --all --graph
Possibly duplicate of this
Upvotes: 1