Complete the command to download changes from the remote repository without merging.
git [1] originThe git fetch command downloads changes from the remote repository but does not merge them into your current branch.
Complete the command to fetch updates from a remote named 'upstream'.
git [1] upstreamgit fetch upstream downloads changes from the remote called 'upstream' without merging.
Fix the error in the command to fetch from remote 'origin' without merging.
git [1] origin masterUsing git fetch origin master downloads the master branch updates without merging.
Fill both blanks to fetch all branches from remote 'origin' without merging.
git [1] origin [2]
git fetch origin --all fetches all branches from 'origin' without merging.
Fill all three blanks to fetch updates from remote 'upstream' and prune deleted branches.
git [1] [2] [3]
git fetch upstream --prune downloads updates from 'upstream' and removes references to deleted remote branches.