Today at work I tried to update my local files and I got this message:
...git pull origin master
From https://github.com/.../ez-class
* branch master -> FETCH_HEAD
+ ace98f3...145956d master -> origin/master (forced update)
Already up to date.
Then this is what I did:
...>git fetch
...>git reset origin/master --hard
HEAD is now at 145956d hello
...>git pull
Already up to date.
...>git pull origin master
From https://github.com/.../ez-class
* branch master -> FETCH_HEAD
Already up to date.
It looks like all my changes on the remote repository are gone as well as locally. I'm not sure what happened here... and is there any way I can fix this?