How to undo from 'git reset' command?
Originally Published Here ๐!
To undo a git reset, you can use the command
git reset 'HEAD@1'
This will make the Git point to a version before the reset happened.
HEAD@1 means version before reset and HEAD@0 is the last git reset command itself.
Thi...
melvingeorge-me.hashnode.dev1 min read