How's everyone doing? Have run into an issue with GIT where I can't determine which child node is on the same branch as the parent and which one is a new branch: git tree example for below commits
As can be seen, there are tags but no branch names in the local/remote project.
tag "3.2ECHO1.1" -> parent: d42624
first green commit -> child 1: c1749e
first pink commit -> child 2: 404c71
If I run any of the following commands:
git branch -a --contains c1749e
git branch -a --contains 404c71
git branch -a --contains d42624
the result is an empty line for each.
Question: given a git parent commit, how does one determine which child is on the same branch and which child was a new branch? I would like to recreate the exact structure of this project into a new project.
Thanks