Skip to content

Instantly share code, notes, and snippets.

@rameshanandakrishnan
Created June 6, 2014 11:39
Show Gist options
  • Save rameshanandakrishnan/b18181d3fb0c18351ab1 to your computer and use it in GitHub Desktop.
Save rameshanandakrishnan/b18181d3fb0c18351ab1 to your computer and use it in GitHub Desktop.
Rolling back to a specific commit
#To roll back to specific commit
# Resets index to former commit; replace '56e05fced' with your commit code
git reset 56e05fced
# Moves pointer back to previous HEAD
git reset --soft HEAD@{1}
git commit -m "Revert to 56e05fced"
# Updates working copy to reflect the new commit
git reset --hard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment