Git FAQs
Undo the last local commit
git reset HEAD~
Undo Uncommitted or Unsaved Changes
Unstage all the files you might have staged with git add
:
git reset
Revert all the local uncommitted changes. Execute in the repo root:
git checkout .
git reset HEAD~
Unstage all the files you might have staged with git add
:
git reset
Revert all the local uncommitted changes. Execute in the repo root:
git checkout .