Complete the code to clone an Azure Repo using Git.
git clone [1]To clone a repository, you use the git clone command followed by the repository URL.
Complete the command to check the status of your local repo changes.
git [1]The git status command shows which files have changed and are staged for commit.
Fix the error in the command to commit changes with a message.
git commit [1] "Update README"
The -m option is used to add a commit message directly in the command.
Fill both blanks to push your local commits to the main branch on Azure Repos.
git [1] origin [2]
Use git push to send commits to the remote repo, specifying the branch name, usually main.
Fill all three blanks to create a new branch, switch to it, and push it to Azure Repos.
git [1] -b [2] && git [3] -u origin [2]
First, create and switch to a new branch with git checkout -b feature1. Then push it to the remote with git push -u origin feature1.