Which command can we use to get changes from an origin remote into a local master branch?

git pull origin mastergit fetch origin
git push origin mastergit pull master origin

Flawless! We need to use git pull followed by the remote and the branch we want to merge into the current branch.

Not quite! We need to use git pull followed by the remote and the branch we want to merge into the current branch.