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?
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?
git log with flags you can see parent branch or branch topology.
$ git log --oneline --decorate --all --graph
Possibly duplicate of this