0

Lets say I created a branch called feature1 from develop branch.

Also, I created a issue123 branch from feature1 branch.

Now I want to know that feature1 is created from develop branch, and similarly issue123 branch is created from develop branch.

How can I do that?

Any help is very much appreciated. Thanks.

Azima
  • 3,835
  • 15
  • 49
  • 95

1 Answers1

0

Not Exactly what you want, but some close solutions to it are ..

git show-branch
git show-branch --all

And,

git log --all --graph --decorate --oneline --simplify-by-decoration
Maverick1604
  • 331
  • 3
  • 14