If I have three branches master , develop and xxx . Is there a way to find out from commands which branch part xxx ? And since we are, which branches start from a certain branch?
edited
What I would like to know is if you can ask for a specific branch or if you can get a list of branches like:
master
master/develop
master/develop/xxx
master/develop/zzzzz
master/new-fonts
to see it easily.
Checkout the branch in question and then run:
This way you can identify what you need.
An example:
Use
git log --graph --decorate
.To see all branches:
And to see the different commits of each branch in order: