how to undo last command in github code example
Example 1: undo reset commit git
git reflog //to get commitID
git reset #commitID
Example 2: git reflog reset
git reset HEAD@{1}
git reflog //to get commitID
git reset #commitID
git reset HEAD@{1}