how to get all stash ids code example
Example 1: git stash save name
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
Example 2: how to get stashed on git
git stash pop
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
git stash pop