Complete the command to create a stash with a custom name.
git stash save [1]The git stash save command followed by a quoted message creates a named stash.
Complete the command to create a stash with a message using the modern syntax.
git stash push [1]The git stash push command uses -m to add a message describing the stash.
Fix the error in the command to create a named stash with git stash push.
git stash push [1] "Fix bug"
The correct flag to add a message with git stash push is -m.
Fill both blanks to create a stash with a message and include untracked files.
git stash push [1] [2]
Use -m to add a message and --include-untracked to stash untracked files.
Fill all three blanks to create a stash with a message, include all files, and keep index.
git stash push [1] [2] [3]
Use -m for message, -a to include all files (tracked, untracked, ignored), and --keep-index to keep staged changes.