Skip to content

Instantly share code, notes, and snippets.

@jm66
Forked from alexislucena/uncommitLastCommit.md
Created February 9, 2018 14:26
Show Gist options
  • Save jm66/20a928b44cdd1662cc017a68d24707b5 to your computer and use it in GitHub Desktop.
Save jm66/20a928b44cdd1662cc017a68d24707b5 to your computer and use it in GitHub Desktop.
Git: How to uncommit my last commit in git

To keep the changes from the commit you want to undo

$ git reset --soft HEAD^

To destroy the changes from the commit you want to undo

$ git reset --hard HEAD^

You can also say

$ git reset --soft HEAD~2

to go back 2 commits.

If you are on Windows you will need to put HEAD or commit hash in quotes.

$ git reset --soft "HEAD^"
$ git reset --soft "asdf"

Source:
http://stackoverflow.com/a/13480388/2050561

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment