Complete the command to save your current changes to a stash.
git stash [1]The git stash push command saves your current changes to a new stash.
Complete the command to reapply the latest stash without removing it.
git stash [1]The git stash apply command reapplies the latest stash but keeps it in the stash list.
Fix the error in the command to reapply and remove the latest stash.
git stash [1]The git stash pop command reapplies the latest stash and removes it from the stash list.
Fill both blanks to complete the command that shows the stash list and then removes the latest stash.
git stash [1] && git stash [2]
git stash list shows all stashes, and git stash pop reapplies and removes the latest stash.
Fill all three blanks to create a dictionary comprehension that maps stash names to their index if the index is less than 3.
stash_dict = [1]: [2] for [3] in range(5) if [2] < 3}
This comprehension creates keys like 'stash_0', 'stash_1', 'stash_2' with values 0, 1, 2.