Skip to content

Instantly share code, notes, and snippets.

@euyuil
Created November 30, 2014 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save euyuil/1947f7d0fd73eb39f36f to your computer and use it in GitHub Desktop.
Save euyuil/1947f7d0fd73eb39f36f to your computer and use it in GitHub Desktop.
Git: undo last commit
# 这个还能保留上一次的更改。
git reset --soft HEAD^
# 这个不能保留上一次的更改。
git reset --hard HEAD^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment