I am new to git and pretty confused by this.
I accidentally pulled the wrong branch into the branch I was working on, so I searched and found git reset --hard is meant to pull it back to the original state. I did this, but nothing happened - the files I pulled remain.
I then used git reflog show to see if I could do something like git reset --hard HEAD@{1} but none of the repos listed are the one I am working on.
Would anyone be able to help me just reverse this accidental pull?