You would like to restore some previously stashed work to a new branch. How can you do that?
Run git stash branch <branch name>.
git stash branch <branch name>
Use git checkout -b.
git checkout -b
Add the stashed commits to the current commit, then create a new branch.
Use git branch <stash hash>.
git branch <stash hash>