I know
git stash branch branchname
creates a new branch using the most recent stash
and
git stash branch branchname stash@{index}
creates a new branch using a stash at a given index. But, is it possible to do something like this?
git stash branch branchname stashname
Note: This didn't work
git stash branch branchname stash^{/name}