Complete the command to initialize a new Git repository.
git [1]The git init command creates a new Git repository in the current folder.
Complete the command to save changes to the Git repository with a message.
git commit -m [1]The commit message should be enclosed in quotes, like "Initial commit", so Git treats it as one string.
Fix the error in the command to add all changed files to the staging area.
git [1] .The git add . command stages all changes in the current folder for the next commit.
Fill both blanks to switch to the new-feature branch.
git [1] [2]
The command git checkout new-feature switches to the branch named 'new-feature'.
To create and switch in one step, you would use git checkout -b new-feature, but here the blanks fit this simpler command.
Fill all three blanks to push the current branch to the remote repository named 'origin'.
git [1] [2] [3]
The command git push origin main sends your local 'main' branch changes to the remote repository called 'origin'.