Complete the command to save your current changes temporarily using git stash.
git [1]The git stash command saves your current changes temporarily so you can work on something else without committing.
Complete the command to see the list of all stashed changes.
git [1] listThe command git stash list shows all the saved stashes you have made.
Fix the command to apply the most recent stash and remove it from the stash list.
git stash [1]git stash pop applies the most recent stash and removes it from the stash list.
Fill both blanks to create a stash with a custom message and then list all stashes.
git stash [1] "[2]" git stash list
git stash save "work in progress" saves your changes with a message. Then git stash list shows all stashes.
Fill all three blanks to stash only staged changes, then apply the stash without removing it.
git stash [1] --[2] git stash [3]
git stash push --staged saves only staged changes. Then git stash apply applies the stash without removing it.