git stash pop [0] code example
Example: git stash save name
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch