Complete the command to create a new pull request branch named 'feature' from 'main'.
git checkout -b [1] mainThe command git checkout -b feature main creates a new branch called 'feature' based on 'main'.
Complete the command to push your local 'feature' branch to the remote repository.
git push origin [1]To share your 'feature' branch, you push it with git push origin feature.
Fix the error in the command to fetch the latest changes from the remote repository.
git [1] originThe command git fetch origin downloads changes from the remote without merging them.
Fill both blanks to create a pull request review comment on line 10 of 'app.py'.
gh pr review [1] --comment --body "Looks good!" --line [2] --path app.py
Use the pull request number (e.g., 123) and the line number (10) to comment on that line.
Fill all three blanks to merge a pull request with ID 123 using the GitHub CLI with squash merge and a message.
gh pr merge [1] --[2] --message "[3]"
This command merges PR 123 using squash merge with a custom message.