Find the commit you want to reset to:
git log
Once you have the hash:
git reset --hard <hash>
And to push onto the remote:
git push -f <remote> <branch>
Find the commit you want to reset to:
git log
Once you have the hash:
git reset --hard <hash>
And to push onto the remote:
git push -f <remote> <branch>