I have a small patch saved away in my git stash. I\'ve applied it to my working copy using git stash apply. Now, I\'d like to back out those changes by revers
git stash apply
How to reverse apply a stash?
Apart from what others have mentioned, easiest way is first do
git reset HEAD
and then checkout all local changes
git checkout .