I accidentally did a push --force
on the wrong repo (too many termminals open), effectively resetting the master branch back to an earlier commit.
Looking a
I understand currently you don't have the commit locally; nevertheless you can get it, without modifying your workspace, simply like this:
git fetch
After that, if ever you have current modification, or something like that, you can stash them temporary:
git stash save "My work to be completed later"
Then you can move back to your master branch:
git checkout -f master
Then, force to move the HEAD to the orphan commit you want:
git reset --hard XYZ
As alternative, in case, you prefer destroying and recreating your master branch, you can "move" to another branch, destroy the master branch and recreate it:
git checkout -b anyOtherBranch
git branch -D master
git checkout -b master XYZ
And eventually, push force your new master branch;
git push --force origin master