Question: What command takes changes from the master branch on the remote repository origin and merges them to the local checked-out branch?
- git checkout origin
 - git commit -u origin
 - git pull origin master
 - git push origin master
 
Answer: The correct answer of the above question is Option C:git pull origin master