Complete the command to stash only the file named app.py.
git stash push [1]To stash specific files, you list them after git stash push with --. Here, -- app.py means only app.py is stashed.
Complete the command to stash changes only in index.html and style.css.
git stash push [1]To stash multiple specific files, list them after --. Here, -- index.html style.css stashes only those two files.
Fix the error in the command to stash only README.md.
git stash push [1] README.mdThe -- tells Git that what follows are file names. Without it, Git treats README.md as an option or argument incorrectly.
Fill both blanks to stash only main.js.
git stash push [1] [2]
The -- signals that the following arguments are file names. Then list the file names. Here, -- main.js stashes only main.js. To stash both files, you would list both after --.
Fill all three blanks to stash only server.js and config.json.
git stash push [1] [2] [3]
Use -- to mark the start of file names, then list the files you want to stash. Here, -- server.js config.json stashes those two files. To stash all three, you would add README.md as well.