Complete the command to save your current changes temporarily.
git [1]The git stash command saves your current changes temporarily so you can work on something else.
Complete the command to list all saved stashes.
git [1] listgit stash list shows all the stashes you have saved.
Fix the error in the command to apply the latest stash.
git stash [1]git stash apply applies the latest stash without removing it from the stash list.
Fill both blanks to save changes with a message and then list all stashes.
git stash [1] "[2]" && git stash list
git stash save "WIP on feature" saves changes with a message. Then git stash list shows all stashes.
Fill all three blanks to create a stash, list stashes, and then apply the latest stash.
git stash [1] && git stash [2] && git stash [3]
This sequence saves your changes with save, lists all stashes with list, and applies the latest stash with apply.