unstash commit code example
Example 1: how to undo a git stash
git stash apply
Example 2: how to unstage a commit
git reset HEAD~
Example 3: git save to stash
git stash save "name to describe stashed content"
git stash apply
git reset HEAD~
git stash save "name to describe stashed content"