Complete the command to clone a repository from GitHub.
git [1] https://github.com/user/repo.gitThe git clone command copies a remote repository to your local machine.
Complete the command to create a new branch named 'feature'.
git [1] featureThe git branch command creates a new branch without switching to it.
Fix the error in the command to switch to the 'develop' branch.
git [1] developThe git checkout command switches branches in your local repository.
Fill both blanks to create a new branch and switch to it in one command.
git [1] -b [2]
The command git checkout -b feature creates and switches to the 'feature' branch.
Fill all three blanks to merge the 'feature' branch into 'main' and push changes.
git [1] feature && git [2] origin [3]
This sequence merges 'feature' into 'main' locally, then pushes 'main' to the remote repository.
