Skip to content

Instantly share code, notes, and snippets.

@fuzzmz
Created November 19, 2012 16:11
Show Gist options
  • Save fuzzmz/4111521 to your computer and use it in GitHub Desktop.
Save fuzzmz/4111521 to your computer and use it in GitHub Desktop.
git revert to specific commit
git reset 56e05fced #resets index to former commit; replace '56e05fced' with your commit code
git reset --soft HEAD@{1} #moves pointer back to previous HEAD
git commit -m "Revert to 56e05fced"
git reset --hard #updates working copy to reflect the new commit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment