Is there an easy way to find how it merged into a main branch?
I cannot find it in my git reflog or git log, it only fixes the name origin / feature_branch_name, but somehow it also has the name origin / main_branch_name.
I create my branches using
git checkout -b feature_branch_name
I put my branch at the beginning with
git push origin feature_branch_name
and git output was
<hash1>..<hash2> feature_branch_name -> feature_branch_name
The next day I checked our main branch and pulled, and some new files appeared in the main branch when I pulled. Any ideas how I can track this?
source
share