Created
July 22, 2014 21:44
-
-
Save rednebmas/bae645d9f8d710451b63 to your computer and use it in GitHub Desktop.
Reset to previous commit without removing history
This file contains hidden or 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
| Reverting Working Copy to an Older Commit | |
| To revert to a commit that's older than the most recent 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