cancel a git stash code example
Example 1: how to undo a git stash
git stash apply
Example 2: git delete stash
git stash drop stash@{index} // here index will be shown after getting stash list.
git stash apply
git stash drop stash@{index} // here index will be shown after getting stash list.