abort stash git code example
Example 1: git abort stash pop
git apply --reverse
Example 2: git stash abort
git reset HEAD --hard
git checkout my_correct_branch
git stash pop
git apply --reverse
git reset HEAD --hard
git checkout my_correct_branch
git stash pop