Skip to content

Instantly share code, notes, and snippets.

@AnasAboreeda
Forked from alexislucena/uncommitLastCommit.md
Created November 14, 2016 08:58
Show Gist options
  • Save AnasAboreeda/2a109118957673aa5b87d88e5567152e to your computer and use it in GitHub Desktop.
Save AnasAboreeda/2a109118957673aa5b87d88e5567152e 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