Complete the command to check the current status of your working directory.
git [1]The git status command shows the current state of the working directory and staging area.
Complete the command to discard changes in a file named app.py and restore it to the last committed state.
git checkout -- [1]-- which separates options from file names.The command git checkout -- app.py restores app.py to the last committed version, discarding local changes.
Fix the error in the command to stage all changed files for commit.
git [1] .The command git add . stages all changes in the current directory for the next commit.
Complete the command to switch to the branch named feature.
git [1] [2]
The command git checkout feature switches to the branch named feature.
Fill all three blanks to show the differences between the working directory and the last commit for the file server.js.
git [1] [2] [3]
The command git diff -- server.js shows changes in server.js that are not yet staged.