more bad git syntax decisions
git stash save has been deprecated. Instead you use git stash push, which is nothing at all like git push. kind of makes sense but come on, git.
Also good examples from stack overflow:
git stash listgit stash pop stash@{n}- apply stash by number, then drop itgit stash apply stash^{/named-stash}-applymeans keep the stash
