Complete the code to add a file to the staging area.
git add [1]The git add command adds the specified file to the staging area (index), preparing it for commit.
Complete the command to see the current status of the staging area.
git [1]The git status command shows which files are staged, unstaged, or untracked.
Fix the error in the command to commit staged changes with a message.
git commit -m [1]The commit message must be enclosed in quotes to be treated as a single string.
Fill both blanks to switch to the new-feature branch.
git [1] [2]
git checkout new-feature switches to the branch named 'new-feature'.
Fill all three blanks to stage all changes, commit with a message, and push to remote.
git [1] . && git commit -m [2] && git [3]
This sequence stages all changes, commits them with a message, and pushes to the remote repository.
