Created
June 13, 2013 14:40
-
-
Save stefanoortisi/5774216 to your computer and use it in GitHub Desktop.
Revert a branch to a previous commit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To revert to a commit further back than the most recent 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