Complete the command to clone a forked repository to your local machine.
git [1] https://github.com/username/repo.gitThe git clone command copies the forked repository to your local computer so you can work on it.
Complete the command to create a new branch for your changes.
git [1] feature-branchThe git branch command creates a new branch named feature-branch where you can make your changes.
Fix the error in the command to switch to your new branch.
git [1] feature-branchThe git checkout command switches your working directory to the specified branch.
Fill both blanks to add all changes and commit with a message.
git [1] . git [2] -m "Add new feature"
First, git add . stages all changes. Then, git commit -m "Add new feature" saves the changes with a message.
Fill all three blanks to push your branch and create a pull request.
git [1] origin [2] # Then go to GitHub and create a pull request from [3] branch
git push origin feature-branch uploads your branch to GitHub. Then you create a pull request from the feature-branch.