Git Stash Save Name
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
Helpless Herring
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
git checkout stash@{0} -- <filename>
git restore -s stash@{0} -- <filename>
git stash pop stash@\{1\}
git restore -s stash@{0} -- <filename>