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