96
git stash push -m "my_stash"
git stash list
git stash pop stash@{n}
git stash apply stash@{n}
git stash apply my_stash_name
82
stash@{0}: On develop: perf-spike stash@{1}: On develop: node v10
git stash apply stash@{1}
77
# save your working copy changes git diff > some.patch # re-apply it later git apply some.patch
70
git stash branch <branchname> [<stash>]