how to see all git stashes code example
Example 1: git stash save name
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
Example 2: git stash contnet
git stash show -p stash@{1}
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
git stash show -p stash@{1}