I'm trying to figure out the best way to completely remove my merge commit from Master.
So far what has happened is I merged my feature branch into Master, and pushed out those changes. Other Dev's have also merged in their feature branches to Master and now my changes are under their commits.
I need to pull out my merge from my feature branch as that is causing problems while also keeping everyone else's changes in Master.
Git revert isn't working as it wants me to decide on a main line and I can't tell which main line I need to use.
Whats the best way for me to fix this besides merging in a hot fix?