I will try my best to briefly describe my current situation and will be very grateful for some advice.
This morning I merged into a large functional code branch, which turned out to be critical. To reverse this, my colleague returned the merge (which had several commits) to GitHub, and after a stretch everything looked good.
After making some changes to the property branch, I wanted to make sure it could re-enter, so I used the 'git master merge' in my function branch (as always) to make sure everything is up to date.
Surprisingly, the result was the removal of all the new code that I need in order to join the master repo again!
Is this related to the return that occurred on the branch? Looking through the git log, I see that all the commits are still there. And even stranger, the pull request on github does not show any original diff commits, only what I changed since returning.
Can someone help me figure this out?
I know that some people suggested simply returning the reverse, but I need to return in its pure form, since the changes I made relate to the structure of most of the code.
Lizza source share