I accidentally merged in a huge branch into my branch and pushed to the remote repo.
I need to 'reset' back to a previous commit on my branch, before I did this accidental merge.
I've looked at many similar questions on Stack Overflow and they all say to just use
git reset --hard <sha1_of_where_you_want_to_be>
which I have done. But I don't see any changes. git status
shows nothing and when I push back up to my remote repo nothing changes.
Would anyone know what I am doing wrong or what I should do next?