git stash pop specific name code example
Example 1: git stash command with name
git stash save "my_stash"
Example 2: git stash save name
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch
git stash save "my_stash"
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch