get agit stash name code example
Example 1: git stash command with name
git stash save "my_stash"
Example 2: git stash save name
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
git stash save "my_stash"
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}