1

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?

RIYAJ KHAN
  • 15,032
  • 5
  • 31
  • 53

1 Answers1

1

git log with flags you can see parent branch or branch topology.

$ git log --oneline --decorate --all --graph   

Possibly duplicate of this

Community
  • 1
  • 1
Sajib Khan
  • 22,878
  • 9
  • 63
  • 73