We had someone commit some files that had only partial merges in them. In short, anyone who pulled ended up with a corrupted project.
We solved this by doing a git --reset HARD . Great! The issues is now that we're 2 commits behind. But we DO NOT want those 2 commits. We'd like to pretend that everything after xxyy never happened.
What's the best option here?