Save a stash with a message

git stash push -m "my-stash"

Stash only certain files

git stash push -p -m "my-stash"

List stash

git stash list

Apply and drop the nth stash

git stash apply stash@{n}

References:

  • https://stackoverflow.com/questions/11269256/how-do-i-name-and-retrieve-a-git-stash-by-name
  • https://git-scm.com/docs/git-stash#Documentation/git-stash.txt-push-p–patch-k–no-keep-index-u–include-untracked-a–all-q–quiet-m–messageltmessagegt–ltpathspecgt82308203
  • https://stackoverflow.com/questions/3040833/how-do-i-stash-only-one-file-out-of-multiple-files-that-have-changed