I had a feature branch called "feat" that was many commits ahead of master, and a master branch that was ahead of feat.
I issued a fabric script that accidentally issued the command:
git push -f origin feat:master
This force updated the master with the branch. Now, master looks like it has been completely overwritten by the branch.
How can I roll this back?
Thanks in advance!