Which command saves your current changes to a new stash with a message?

git stash save “WIP”
git stash push -m “WIP”
git stash create “WIP”

How do you include untracked files when stashing?

git stash -a
git stash push -u
git stash —untracked-only

Which command shows the list of stashes?

git stash list
git stash show
git stash status

What is the difference between git stash apply and git stash pop?

apply deletes the stash, pop keeps it
pop applies and removes the stash; apply leaves it in the list
No difference

How do you remove a specific stash entry stash@{0}?

git stash clear stash@0
git stash drop stash@0
git stash delete stash@0