$ git stash push -m "john-hancock" $ git stash apply stash^{/john-hancock}
# save your working copy changes git diff > some.patch # re-apply it later git apply some.patch
git stash push -m "john-hancock"