Complete the command to check the current state of your git repository.
git [1]The git status command shows the current state of your repository, including staged, unstaged, and untracked files.
Complete the command to see detailed information about changed files in your git repository.
git [1]git diff shows the detailed line-by-line changes between files in your repository.
Fix the error in the command to check the current git repository state.
git [1]usThe correct command is git status. The given command is missing the 't' and 'a' letters.
Fill both blanks to complete the command that shows the current state of your git repository with short output.
git [1] --[2]
git status --short shows a brief summary of the repository state.
Fill all three blanks to create a command that shows the current git status including untracked files.
git [1] --[2]=[3]
The command git status --untracked-files=all shows all untracked files in the repository status.