Complete the command to download changes from the remote repository without merging.
git [1]The git fetch command downloads changes from the remote repository but does not merge them into your local branch.
Complete the command to download and merge changes from the remote repository into your current branch.
git [1]The git pull command downloads changes and merges them into your current branch automatically.
Fix the error in the command to update your local branch with remote changes.
git [1] origin mainTo update your local branch with remote changes, you should use git pull origin main. Using fetch alone downloads changes but does not merge them.
Fill both blanks to create a command that downloads remote changes but does not merge them.
git [1] origin [2]
The command git fetch origin main downloads changes from the remote 'main' branch without merging them into your local branch.
Fill all three blanks to create a command that downloads and merges changes from the remote 'master' branch.
git [1] origin [2] && git [3]
This sequence first fetches changes from the remote 'master' branch, then pulls (fetches and merges) changes into your current branch.