I did a git commit, but I just remembered that I checked out the wrong branch, I did a git stash and deleted branch
git checkout -b "myBranch"
git add .
git commit -m "message"
git stash
git branch -d "myBranch"
this is not stored, how do I restore my stash to the new branch?
git checkout -b "myBranch" dev
git stash pop