/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#MORE INFO: http://anders.janmyr.com/2009/09/git-undo-reset-or-revert.html #METHOD 1: #This stashes them git stash save --keep-index #This gets rid of the stash and actually drops it git stash drop #METHOD 2: git checkout -- .