Create a new branch from your git stash
git stash
and then create a new branch and then do a git stash pop
. You can reduce this to a single step by the command
git stash branch <new branch name>
git stash
and then create a new branch and then do a git stash pop
. You can reduce this to a single step by the command
git stash branch <new branch name>