RIYAJ KHAN
RIYAJ KHAN

Reputation: 15292

from which branch the remote 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?

Upvotes: 1

Views: 114

Answers (1)

Sajib Khan
Sajib Khan

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

Related Questions