Complete the code to add a remote repository named 'origin'.
git remote [1] https://github.com/user/repo.gitThe git remote add command adds a new remote repository, allowing collaboration.
Complete the command to fetch changes from the remote repository.
git [1] origingit fetch downloads changes from the remote without merging them, enabling collaboration.
Fix the error in the command to push local changes to the remote.
git [1] origin maingit push uploads your local commits to the remote repository, sharing your work.
Fill both blanks to create a new branch and push it to the remote.
git [1] feature-branch git [2] -u origin feature-branch
First, create a new branch with git checkout -b. Then push it to the remote with git push and set upstream.
Fill all three blanks to clone a repository, create a branch, and push it.
git [1] https://github.com/user/repo.git git [2] new-feature git [3] -u origin new-feature
First, clone the repo with git clone. Then create a branch with git checkout -b. Finally, push the branch with git push.