git stash pop 1 code example
Example 1: git remove first stash
git stash drop 0
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 drop 0
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch