Published
- 1 min read
undo git reset HEAD~1
The solution for this is noted below
undo git reset HEAD~1
Solution
# if you would like to move back the head by one position you could do:
git reset HEAD~
# if you want to move multiple positions at once e.g 3 times back type:
git reset HEAD@{3}
Try other methods by searching on the site. That is if this doesn’t work