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
## Oh shit, I did something terribly wrong, please tell me git has a magic time machine!?! | |
`git reflog` | |
### you will see a list of every thing you've done in git, across all branches! | |
### Each one has an index HEAD@{index} find the one before you broke everything. | |
`git reset HEAD@{index}` | |
### magic time machine` | |
## Oh shit, I committed and immediately realized I need to make one small change! |