git stash pop specific 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}
Example 3: git stash save name
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch
Example 4: git stash pop specific
git stash pop stash@\{1\}